aboutsummaryrefslogtreecommitdiffstats
path: root/awkgram.c
diff options
context:
space:
mode:
authorArnold D. Robbins <arnold@skeeve.com>2012-12-23 14:03:03 +0200
committerArnold D. Robbins <arnold@skeeve.com>2012-12-23 14:03:03 +0200
commit15e58aea1441250cb85f760e644f97cd6efed35f (patch)
tree4d4621051b33c22043ea773658045bb623abd2b9 /awkgram.c
parent7627ab595b5e4f7e44f3924345b6ba8a7043c482 (diff)
downloadegawk-15e58aea1441250cb85f760e644f97cd6efed35f.tar.gz
egawk-15e58aea1441250cb85f760e644f97cd6efed35f.tar.bz2
egawk-15e58aea1441250cb85f760e644f97cd6efed35f.zip
Bug fix for sprintf/printf. Minor edit in awkgram.y.
Diffstat (limited to 'awkgram.c')
-rw-r--r--awkgram.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/awkgram.c b/awkgram.c
index 73d48956..d9387e25 100644
--- a/awkgram.c
+++ b/awkgram.c
@@ -4362,7 +4362,7 @@ static const struct token tokentab[] = {
{"gsub", Op_sub_builtin, LEX_BUILTIN, NOT_OLD|A(2)|A(3), 0},
{"if", Op_K_if, LEX_IF, 0, 0},
{"in", Op_symbol, LEX_IN, 0, 0},
-{"include", Op_symbol, LEX_INCLUDE, GAWKX, 0},
+{"include", Op_symbol, LEX_INCLUDE, GAWKX, 0},
{"index", Op_builtin, LEX_BUILTIN, A(2), do_index},
{"int", Op_builtin, LEX_BUILTIN, A(1), do_int},
{"isarray", Op_builtin, LEX_BUILTIN, GAWKX|A(1), do_isarray},