Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
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)
  • Loading branch information
albert-github committed Sep 30, 2015
1 parent 51ee1b0 commit 43c4157
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions src/code.l
Expand Up @@ -2026,6 +2026,11 @@ RAWEND ")"[^ \t\(\)\\]{0,16}\"
<SkipCPP>"//" {
g_code->codify(yytext);
}
<Body,FuncCall>"}" {
g_theVarContext.popScope();
g_yyColNr++;
g_code->codify(yytext);
}
<Body,FuncCall>"{" {
g_theVarContext.pushScope();

Expand Down

0 comments on commit 43c4157

Please sign in to comment.