quotes around the variable name in some messages

This commit is contained in:
Wolfgang (Blub) Bumiller 2012-08-18 21:35:47 +02:00
parent cd820c831f
commit 28891c5a37

View file

@ -1796,14 +1796,14 @@ static bool parser_variable(parser_t *parser, ast_block *localblock)
if (!isfunc) {
if (!localblock && (olddecl = parser_find_global(parser, parser_tokval(parser)))) {
ast_value_delete(var);
parseerror(parser, "global %s already declared here: %s:%i",
parseerror(parser, "global `%s` already declared here: %s:%i",
parser_tokval(parser), ast_ctx(olddecl).file, (int)ast_ctx(olddecl).line);
return false;
}
if (localblock && (olddecl = parser_find_local(parser, parser_tokval(parser), parser->blocklocal))) {
ast_value_delete(var);
parseerror(parser, "local %s already declared here: %s:%i",
parseerror(parser, "local `%s` already declared here: %s:%i",
parser_tokval(parser), ast_ctx(olddecl).file, (int)ast_ctx(olddecl).line);
return false;
}