aboutsummaryrefslogtreecommitdiffstats
path: root/regcomp.c
diff options
context:
space:
mode:
authorArnold D. Robbins <arnold@skeeve.com>2010-11-12 12:23:33 +0200
committerArnold D. Robbins <arnold@skeeve.com>2010-11-12 12:23:33 +0200
commit40b3741f63c19e38077d57f4ce4737916ec5073e (patch)
tree89e086fabdfc738b379901d86733e6c260c22f35 /regcomp.c
parent00ef0423acd97cb964a2bae54c93a03a8ab50e5e (diff)
downloadegawk-40b3741f63c19e38077d57f4ce4737916ec5073e.tar.gz
egawk-40b3741f63c19e38077d57f4ce4737916ec5073e.tar.bz2
egawk-40b3741f63c19e38077d57f4ce4737916ec5073e.zip
Bring in development gawk changes.
Diffstat (limited to 'regcomp.c')
-rw-r--r--regcomp.c2
1 files changed, 0 insertions, 2 deletions
diff --git a/regcomp.c b/regcomp.c
index 6f0710cd..5115d7a0 100644
--- a/regcomp.c
+++ b/regcomp.c
@@ -1876,7 +1876,6 @@ peek_token (re_token_t *token, re_string_t *input, reg_syntax_t syntax)
if (!(syntax & RE_NO_GNU_OPS))
token->type = OP_NOTWORD;
break;
-#ifndef GAWK
case 's':
if (!(syntax & RE_NO_GNU_OPS))
token->type = OP_SPACE;
@@ -1885,7 +1884,6 @@ peek_token (re_token_t *token, re_string_t *input, reg_syntax_t syntax)
if (!(syntax & RE_NO_GNU_OPS))
token->type = OP_NOTSPACE;
break;
-#endif
case '`':
if (!(syntax & RE_NO_GNU_OPS))
{