From: Richard Rauch Date: Sun, 26 Oct 2003 04:44:43 +0000 (+0000) Subject: Removed two more bogus "carriage return" references where the comments X-Git-Url: http://git.mutantstargoat.com/user/nuclear/?a=commitdiff_plain;h=f140efae364b87af6ddec3279b7555de8a0c91be;p=freeglut Removed two more bogus "carriage return" references where the comments 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 --- diff --git a/src/freeglut_font.c b/src/freeglut_font.c index 710298f..447f598 100644 --- a/src/freeglut_font.c +++ b/src/freeglut_font.c @@ -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++ )