Removed two more bogus "carriage return" references where the comments
authorRichard Rauch <rkr@olib.org>
Sun, 26 Oct 2003 04:44:43 +0000 (04:44 +0000)
committerRichard Rauch <rkr@olib.org>
Sun, 26 Oct 2003 04:44:43 +0000 (04:44 +0000)
were in fact talking about a line feed (a.k.a. newline, LF, ^J, \n, ...).

git-svn-id: svn+ssh://svn.code.sf.net/p/freeglut/code/trunk/freeglut/freeglut@239 7f0cb862-5218-0410-a997-914c9d46530a

src/freeglut_font.c

index 710298f..447f598 100644 (file)
@@ -139,7 +139,7 @@ void FGAPIENTRY glutBitmapString( void* fontID, const unsigned char *string )
 
   /*
    * Step through the string, drawing each character.
-   * A carriage return will simply translate the next character's insertion
+   * A newline will simply translate the next character's insertion
    * point back to the start of the line and down one line.
    */
   for( c = 0; c < numchar; c++ )
@@ -246,7 +246,7 @@ void FGAPIENTRY glutStrokeString( void* fontID, const unsigned char *string )
 
   /*
    * Step through the string, drawing each character.
-   * A carriage return will simply translate the next character's insertion
+   * A newline will simply translate the next character's insertion
    * point back to the start of the line and down one line.
    */
   for( c = 0; c < numchar; c++ )