mirror of
https://github.com/openvswitch/ovs
synced 2025-08-31 06:15:47 +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;
|
||||
return p;
|
||||
|
||||
case ' ': case '\t': case '\n': case '\r':
|
||||
case ' ': case '\t': case '\n': case '\r': case '\v': case '\f':
|
||||
p++;
|
||||
goto next;
|
||||
|
||||
|
Reference in New Issue
Block a user