2
0
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:
Ben Pfaff
2016-10-07 10:04:35 -07:00
parent 4f6d33f369
commit bb25f13cb5

View File

@@ -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;