diff options
author | albert-github <albert.tests@gmail.com> | 2014-04-07 17:52:41 (GMT) |
---|---|---|
committer | albert-github <albert.tests@gmail.com> | 2014-04-07 17:52:41 (GMT) |
commit | 7f4414b92a1c2147b073dd3cf58e0db7c8a88be6 (patch) | |
tree | 27b7fbe48d7e2b3828e5c589da87bff00a3544ee /src | |
parent | de502ca71fc1c20ed93209f6a223c488eee38297 (diff) | |
download | Doxygen-7f4414b92a1c2147b073dd3cf58e0db7c8a88be6.zip Doxygen-7f4414b92a1c2147b073dd3cf58e0db7c8a88be6.tar.gz Doxygen-7f4414b92a1c2147b073dd3cf58e0db7c8a88be6.tar.bz2 |
Bug 678436 - Nested \if messes up list items
Blank spaces after an if statement have to be removed as well. Also spaces before the firs round bracket have to be removed.
Diffstat (limited to 'src')
-rw-r--r-- | src/commentscan.l | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/commentscan.l b/src/commentscan.l index 8aa3c83..4b25dff 100644 --- a/src/commentscan.l +++ b/src/commentscan.l @@ -1810,7 +1810,7 @@ RCSTAG "$"{ID}":"[^\n$]+"$" /* ----- handle arguments of if/ifnot commands ------- */ -<GuardParam>"(" { +<GuardParam>{B}*"(" { g_guardExpr=yytext; g_roundCount=1; BEGIN(GuardExpr); |