From 9e1b0a699ecc0f896f5d8070b0e1212b575a0073 Mon Sep 17 00:00:00 2001 From: Henrik Tidefelt Date: Mon, 2 Nov 2009 17:21:27 +0100 Subject: [PATCH] Bugfix: Source location of a symbol was missing the identifier part of it. --- source/shapesparser.yy | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/source/shapesparser.yy b/source/shapesparser.yy index 7f59dfe6..c1327e1f 100644 --- a/source/shapesparser.yy +++ b/source/shapesparser.yy @@ -1177,7 +1177,7 @@ ConstantExceptStrings } | '\'' T_identifier { - $$ = new Ast::Constant( @1, new Lang::Symbol( $2 ) ); + $$ = new Ast::Constant( @$, new Lang::Symbol( $2 ) ); } ; -- 2.11.4.GIT