summaryrefslogtreecommitdiffstats
path: root/src/code.l
diff options
context:
space:
mode:
Diffstat (limited to 'src/code.l')
-rw-r--r--src/code.l5
1 files changed, 5 insertions, 0 deletions
diff --git a/src/code.l b/src/code.l
index c906144..3323580 100644
--- a/src/code.l
+++ b/src/code.l
@@ -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();