diff options
Diffstat (limited to 'bin/chio')
-rw-r--r-- | bin/chio/parse.y | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/bin/chio/parse.y b/bin/chio/parse.y index b50440aafa6..981962a452b 100644 --- a/bin/chio/parse.y +++ b/bin/chio/parse.y @@ -1,4 +1,4 @@ -/* $OpenBSD: parse.y,v 1.9 2007/10/16 06:06:47 deraadt Exp $ */ +/* $OpenBSD: parse.y,v 1.10 2007/10/16 20:01:23 mpf Exp $ */ /* * Copyright (c) 2006 Bob Beck <beck@openbsd.org> @@ -324,7 +324,7 @@ yylex(void) } #define allowed_to_end_number(x) \ - (isspace(x) || x == ')' || x ==',' || x == '/' || x == '}') + (isspace(x) || x == ')' || x ==',' || x == '/' || x == '}' || x == '=') if (c == '-' || isdigit(c)) { do { |