diff options
author | dimitri <dimitri@afe2bf4a-e733-0410-8a33-86f594647bc7> | 2006-06-11 07:58:28 (GMT) |
---|---|---|
committer | dimitri <dimitri@afe2bf4a-e733-0410-8a33-86f594647bc7> | 2006-06-11 07:58:28 (GMT) |
commit | 07ee85ebcc91a12df8a92078f33e700e5f9f40e8 (patch) | |
tree | 30cd22ecad5caf15fa470d190298c4e98b02e971 /src/commentcnv.l | |
parent | de0997f3baf049e0c312ac4fc9b9b762fdc40e00 (diff) | |
download | Doxygen-07ee85ebcc91a12df8a92078f33e700e5f9f40e8.zip Doxygen-07ee85ebcc91a12df8a92078f33e700e5f9f40e8.tar.gz Doxygen-07ee85ebcc91a12df8a92078f33e700e5f9f40e8.tar.bz2 |
Release-1.4.7
Diffstat (limited to 'src/commentcnv.l')
-rw-r--r-- | src/commentcnv.l | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/commentcnv.l b/src/commentcnv.l index cf22972..a64d66a 100644 --- a/src/commentcnv.l +++ b/src/commentcnv.l @@ -493,8 +493,9 @@ CHARLIT (("'"\\[0-7]{1,3}"'")|("'"\\."'")|("'"[^' \\\n]{1,4}"'")) BEGIN(g_condCtx); } <CondLine>[ \t]* -<CComment,ReadLine>[\\@]"cond"[ \t]*\n | +<CComment,ReadLine>[\\@]"cond"[ \t\r]*\n | <CondLine>. { // forgot section id? + if (YY_START!=CondLine) g_condCtx=YY_START; bool oldSkip=g_skip; startCondSection(" "); // fake section id causing the section to be hidden unconditionally if (g_condCtx==CComment && !oldSkip && g_skip) |