Commit c11bd075 authored by KOBAYASHI Shuji's avatar KOBAYASHI Shuji

Remove unnecessary backticks; ref #2858

parent 018f4bd3
...@@ -4568,7 +4568,7 @@ parser_yylex(parser_state *p) ...@@ -4568,7 +4568,7 @@ parser_yylex(parser_state *p)
} }
pushback(p, c); pushback(p, c);
if (IS_SPCARG(c)) { if (IS_SPCARG(c)) {
yywarning(p, "`**' interpreted as argument prefix"); yywarning(p, "'**' interpreted as argument prefix");
c = tDSTAR; c = tDSTAR;
} }
else if (IS_BEG()) { else if (IS_BEG()) {
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment