From: Wolfgang (Blub) Bumiller Date: Sat, 18 Aug 2012 19:35:47 +0000 (+0200) Subject: quotes around the variable name in some messages X-Git-Tag: 0.1-rc1~176 X-Git-Url: https://git.rm.cloudns.org/?a=commitdiff_plain;h=28891c5a37620605201221d2e9ac7bf2cbf38da7;p=xonotic%2Fgmqcc.git quotes around the variable name in some messages --- diff --git a/parser.c b/parser.c index 1e5c959..aa470f1 100644 --- a/parser.c +++ b/parser.c @@ -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; }