summaryrefslogtreecommitdiffstats
path: root/src/commentcnv.l
diff options
context:
space:
mode:
authorDimitri van Heesch <dimitri@stack.nl>2013-12-25 12:27:42 (GMT)
committerDimitri van Heesch <dimitri@stack.nl>2013-12-25 12:27:42 (GMT)
commit2912829ca5bced897a2c063d1883b9cfd39d3bd9 (patch)
tree106c31a9337205e7466b99d810ab13a758f31d82 /src/commentcnv.l
parent8f58d6dd7c3d0f6004d127bf111f76e4a4478516 (diff)
downloadDoxygen-2912829ca5bced897a2c063d1883b9cfd39d3bd9.zip
Doxygen-2912829ca5bced897a2c063d1883b9cfd39d3bd9.tar.gz
Doxygen-2912829ca5bced897a2c063d1883b9cfd39d3bd9.tar.bz2
Bug 721032 - Trouble with /cond /endcond
Diffstat (limited to 'src/commentcnv.l')
-rw-r--r--src/commentcnv.l2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/commentcnv.l b/src/commentcnv.l
index d59ef51..da5a0a8 100644
--- a/src/commentcnv.l
+++ b/src/commentcnv.l
@@ -731,7 +731,7 @@ void replaceComment(int offset);
<CComment,ReadLine>[\\@][\\@][~a-z_A-Z][a-z_A-Z0-9]*[ \t]* { // escaped command
copyToOutput(yytext,(int)yyleng);
}
-<CComment,ReadLine>[\\@]"cond"[ \t]+ { // conditional section
+<CComment,ReadLine>[\\@]"cond"/[^a-z_A-Z0-9] { // conditional section
g_condCtx = YY_START;
BEGIN(CondLine);
}