From 6117df1277a10bfa2de1e5c9b08c9e6a68d12c28 Mon Sep 17 00:00:00 2001 From: simon Date: Tue, 29 Apr 2008 20:17:28 +0000 Subject: Allow slashes in unquoted strings. From Pierre Riteau Makes sense to oga@ --- parse.y | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) (limited to 'parse.y') diff --git a/parse.y b/parse.y index a6fe7fa..c2ae94c 100644 --- a/parse.y +++ b/parse.y @@ -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 @@ -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)) { -- cgit v1.2.3-2-gb3c3