make error message like the others
git-svn-id: svn://katsu.triplehelix.org/dgamelaunch/trunk@208 db0b04b0-f4d1-0310-9a6d-de3e77497b0e
This commit is contained in:
parent
ff36a733cf
commit
d136a3db4a
2
config.l
2
config.l
|
@ -54,7 +54,7 @@ COMMENT ^#.*
|
|||
|
||||
{MALSTRING} {
|
||||
/* yytext already contains a newline, no need for one here */
|
||||
fprintf(stderr, "%s: unterminated string constant at line %d, start column %d: %s\n", config, line, col - yyleng + 1, yytext);
|
||||
fprintf(stderr, "%s:%d:%d: unterminated string constant: %s\n", config, line, col - yyleng + 1, yytext);
|
||||
}
|
||||
|
||||
{WHITE} { }
|
||||
|
|
Loading…
Reference in New Issue