diff options
author | dimitri <dimitri@afe2bf4a-e733-0410-8a33-86f594647bc7> | 2002-07-28 20:14:48 (GMT) |
---|---|---|
committer | dimitri <dimitri@afe2bf4a-e733-0410-8a33-86f594647bc7> | 2002-07-28 20:14:48 (GMT) |
commit | adac91e9a353095c3bae4b580d27b7cfd8617493 (patch) | |
tree | eb4c65d3676c6ecd00dc532bcb6420f9eb71aa32 /src/doc.l | |
parent | b860a5cc743f3297002876b58d4db5e504f4294d (diff) | |
download | Doxygen-adac91e9a353095c3bae4b580d27b7cfd8617493.zip Doxygen-adac91e9a353095c3bae4b580d27b7cfd8617493.tar.gz Doxygen-adac91e9a353095c3bae4b580d27b7cfd8617493.tar.bz2 |
Release-1.2.17-20020728
Diffstat (limited to 'src/doc.l')
-rw-r--r-- | src/doc.l | 7 |
1 files changed, 5 insertions, 2 deletions
@@ -1692,9 +1692,11 @@ LINKMASK [a-z_A-Z0-9:#.,~&*/\[\]<>()\-\+]+({B}*("const"|"volatile"))? } <DocScan>"\\todo "[0-9]+ | /* generated labels */ <DocScan>"\\test "[0-9]+ | -<DocScan>"\\bug "[0-9]+ { +<DocScan>"\\bug "[0-9]+ | +<DocScan>"\\deprecated "[0-9]+ { writeSpecialItem(yytext); } + /* <DocScan>{CMD}"deprecated"{BSEP} { if (insideItemList) { @@ -1713,7 +1715,8 @@ LINKMASK [a-z_A-Z0-9:#.,~&*/\[\]<>()\-\+]+({B}*("const"|"volatile"))? { outDoc->writeDescItem(); } - } + } + */ <DocScan>"$"[a-zA-Z_0-9]+":"[^\n\$]+"$" { // RCS tag QCString tagName(&yytext[1]); int i=tagName.find(':'); |