carriage return is white space.

This commit is contained in:
steve 2002-02-27 05:46:33 +00:00
parent b5fbb82ba1
commit 6dcf880482
1 changed files with 5 additions and 2 deletions

View File

@ -19,7 +19,7 @@
* Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA
*/
#if !defined(WINNT)
#ident "$Id: lexor.lex,v 1.29 2002/01/03 04:19:02 steve Exp $"
#ident "$Id: lexor.lex,v 1.30 2002/02/27 05:46:33 steve Exp $"
#endif
# include "parse_misc.h"
@ -135,7 +135,7 @@
";".* { return ';'; }
"#".* { ; }
[ \t\b] { ; }
[ \t\b\r] { ; }
\n { yyline += 1; }
@ -151,6 +151,9 @@ int yywrap()
/*
* $Log: lexor.lex,v $
* Revision 1.30 2002/02/27 05:46:33 steve
* carriage return is white space.
*
* Revision 1.29 2002/01/03 04:19:02 steve
* Add structural modulus support down to vvp.
*