From 43c415708be4c2d4065ecda9870d361b0beb0f09 Mon Sep 17 00:00:00 2001 From: albert-github Date: Wed, 30 Sep 2015 20:21:09 +0200 Subject: [PATCH] Bug 629249 - Incorrect "References" and "Referenced by" Discrepancy between number of push and pop calls (push was called with "{" but no pop with "}", in the later case the <*>. rule was used) --- src/code.l | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/src/code.l b/src/code.l index c906144e661..33235801001 100644 --- a/src/code.l +++ b/src/code.l @@ -2026,6 +2026,11 @@ RAWEND ")"[^ \t\(\)\\]{0,16}\" "//" { g_code->codify(yytext); } +"}" { + g_theVarContext.popScope(); + g_yyColNr++; + g_code->codify(yytext); + } "{" { g_theVarContext.pushScope();