summaryrefslogtreecommitdiffstats
path: root/src/doc.l
diff options
context:
space:
mode:
authorDimitri van Heesch <dimitri@stack.nl>2000-09-10 15:26:30 (GMT)
committerDimitri van Heesch <dimitri@stack.nl>2000-09-10 15:26:30 (GMT)
commitb91275de37e317332d5c461e4d66a8685e682f80 (patch)
tree19b06b53ec293b6d690ff3d82f256f67576dee1c /src/doc.l
parent6838640c89552dd1e4495a4a9101754c4d7d4011 (diff)
downloadDoxygen-b91275de37e317332d5c461e4d66a8685e682f80.zip
Doxygen-b91275de37e317332d5c461e4d66a8685e682f80.tar.gz
Doxygen-b91275de37e317332d5c461e4d66a8685e682f80.tar.bz2
Release-20000910
Diffstat (limited to 'src/doc.l')
-rw-r--r--src/doc.l9
1 files changed, 8 insertions, 1 deletions
diff --git a/src/doc.l b/src/doc.l
index 695a07b..c69d4d8 100644
--- a/src/doc.l
+++ b/src/doc.l
@@ -2043,7 +2043,14 @@ DOCPARAM ([a-z_A-Z0-9:\<\>\=\.\-]+)|("\"".*"\"")
}
else
{
- outDoc->newParagraph();
+ if (insidePre)
+ {
+ outDoc->docify(yytext);
+ }
+ else
+ {
+ outDoc->newParagraph();
+ }
}
if (inBlock()) endBlock();
}