summaryrefslogtreecommitdiffstats
path: root/src/code.l
diff options
context:
space:
mode:
authorDimitri van Heesch <dimitri@stack.nl>2005-01-29 11:51:21 (GMT)
committerDimitri van Heesch <dimitri@stack.nl>2005-01-29 11:51:21 (GMT)
commitc00ba20bdfa987c9554d4068fc9ccf1a45fe28f8 (patch)
tree5d48c44b9a2f19b38592c2cb51a919ebd456c8fb /src/code.l
parent2b2cf3ee82f7d5433780d6ade2504700c32c84fc (diff)
downloadDoxygen-c00ba20bdfa987c9554d4068fc9ccf1a45fe28f8.zip
Doxygen-c00ba20bdfa987c9554d4068fc9ccf1a45fe28f8.tar.gz
Doxygen-c00ba20bdfa987c9554d4068fc9ccf1a45fe28f8.tar.bz2
Release-1.4.1-20050129
Diffstat (limited to 'src/code.l')
-rw-r--r--src/code.l9
1 files changed, 8 insertions, 1 deletions
diff --git a/src/code.l b/src/code.l
index 249e180..cdcd53a 100644
--- a/src/code.l
+++ b/src/code.l
@@ -2395,7 +2395,14 @@ OPERATOR {ARITHOP}|{ASSIGNOP}|{LOGICOP}|{BITOP}
g_code->codify(yytext);
if (--g_bracketCount<=0)
{
- BEGIN( CallEnd );
+ if (g_name.isEmpty())
+ {
+ BEGIN( Body );
+ }
+ else
+ {
+ BEGIN( CallEnd );
+ }
}
}
<CallEnd>[ \t\n]* { codifyLines(yytext); }