mirror of
https://github.com/openvswitch/ovs
synced 2025-09-04 00:05:15 +00:00
lex: Treat formfeeds as white space.
Also vertical tabs, whatever those are. Signed-off-by: Ben Pfaff <blp@ovn.org> Acked-by: Andy Zhou <azhou@ovn.org>
This commit is contained in:
@@ -589,7 +589,7 @@ next:
|
|||||||
token->type = LEX_T_END;
|
token->type = LEX_T_END;
|
||||||
return p;
|
return p;
|
||||||
|
|
||||||
case ' ': case '\t': case '\n': case '\r':
|
case ' ': case '\t': case '\n': case '\r': case '\v': case '\f':
|
||||||
p++;
|
p++;
|
||||||
goto next;
|
goto next;
|
||||||
|
|
||||||
|
Reference in New Issue
Block a user