summaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorDimitri van Heesch <dimitri@stack.nl>2015-12-26 18:38:25 (GMT)
committerDimitri van Heesch <dimitri@stack.nl>2015-12-26 18:38:25 (GMT)
commitaaf8255268a59a86e65f70d31d7219b750856bd0 (patch)
tree751016ef834c246e799cab78b07934e7642f27c1 /src
parentfad58668e38d318b7ad348d880336b754d9190f3 (diff)
parent6447c90acb51807d272ce2f24a94574a413d36e0 (diff)
downloadDoxygen-aaf8255268a59a86e65f70d31d7219b750856bd0.zip
Doxygen-aaf8255268a59a86e65f70d31d7219b750856bd0.tar.gz
Doxygen-aaf8255268a59a86e65f70d31d7219b750856bd0.tar.bz2
Merge pull request #429 from albert-github/feature/bug_732356
Bug 732356 - doxygen's \param command is confused by some python default values
Diffstat (limited to 'src')
-rw-r--r--src/pyscanner.l2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/pyscanner.l b/src/pyscanner.l
index 0941bb9..9408c7d 100644
--- a/src/pyscanner.l
+++ b/src/pyscanner.l
@@ -1016,7 +1016,7 @@ STARTDOCSYMS "##"
}
else // continue
{
- g_braceCount--;
+ if (*yytext == ')')g_braceCount--;
g_defVal+=*yytext;
}
}