Treat formfeeds like any other whitespace.

This commit is contained in:
Garrett Wollman 1994-11-07 19:57:20 +00:00
parent 3f318480d8
commit e0a7da508f
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=4242

View File

@ -167,7 +167,7 @@ WORD [A-Za-z_][-A-Za-z_]*
return SEMICOLON;
}
#.* { /* Ignored (comment) */; }
[ \t]* { /* Ignored (white space) */; }
[ \t\f]* { /* Ignored (white space) */; }
";" { return SEMICOLON; }
"," { return COMMA; }
"=" { return EQUALS; }