diff options
author | Arnold D. Robbins <arnold@skeeve.com> | 2012-06-21 22:20:38 +0300 |
---|---|---|
committer | Arnold D. Robbins <arnold@skeeve.com> | 2012-06-21 22:20:38 +0300 |
commit | 898eb2ad1d514887993994e60fe860ac3ee1bba8 (patch) | |
tree | 27eb1633d084f23c0004fadd84fed1496bf495ba /awkgram.c | |
parent | d66f3c9922e36bb2e760e0ac36364c1a5aa11442 (diff) | |
download | gawk-898eb2ad1d514887993994e60fe860ac3ee1bba8.tar.gz |
Further API code and test code.
Diffstat (limited to 'awkgram.c')
-rw-r--r-- | awkgram.c | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -2368,7 +2368,7 @@ yyreduce: if (len == 0) lintwarn_ln((yyvsp[(3) - (3)])->source_line, _("regexp constant `//' looks like a C++ comment, but is not")); - else if ((re)[0] == '*' && (re)[len-1] == '*') + else if (re[0] == '*' && re[len-1] == '*') /* possible C comment */ lintwarn_ln((yyvsp[(3) - (3)])->source_line, _("regexp constant `/%s/' looks like a C comment, but is not"), re); @@ -7216,7 +7216,7 @@ make_assignable(INSTRUCTION *ip) /* stopme --- for debugging */ NODE * -stopme(NODE *tree ATTRIBUTE_UNUSED) +stopme(int nargs ATTRIBUTE_UNUSED) { return make_number(0.0); } |