diff options
author | simon | 2008-04-29 20:17:28 +0000 |
---|---|---|
committer | simon | 2008-04-29 20:17:28 +0000 |
commit | 6117df1277a10bfa2de1e5c9b08c9e6a68d12c28 (patch) | |
tree | f4d4ca867cc66e074eb5cdbad54b1248b577b1ff /parse.y | |
parent | 235ddd62cb618aa8dcec826e5e4307cb74d2396a (diff) | |
download | cwm-6117df1277a10bfa2de1e5c9b08c9e6a68d12c28.tar.gz |
Allow slashes in unquoted strings.
From Pierre Riteau
Makes sense to oga@
Diffstat (limited to 'parse.y')
-rw-r--r-- | parse.y | 7 |
1 files changed, 3 insertions, 4 deletions
@@ -1,4 +1,4 @@ -/* $OpenBSD: parse.y,v 1.5 2008/04/16 13:38:09 oga Exp $ */ +/* $OpenBSD: parse.y,v 1.6 2008/04/29 20:17:28 simon Exp $ */ /* * Copyright (c) 2002, 2003, 2004 Henning Brauer <henning@openbsd.org> @@ -402,10 +402,9 @@ nodigits: #define allowed_in_string(x) \ (isalnum(x) || (ispunct(x) && x != '(' && x != ')' && \ x != '{' && x != '}' && x != '<' && x != '>' && \ - x != '!' && x != '=' && x != '/' && x != '#' && \ - x != ',')) + x != '!' && x != '=' && x != '#' && x != ',')) - if (isalnum(c) || c == ':' || c == '_' || c == '*') { + if (isalnum(c) || c == ':' || c == '_' || c == '*' || c == '/') { do { *p++ = c; if ((unsigned)(p-buf) >= sizeof(buf)) { |