summaryrefslogtreecommitdiffstats
path: root/src/doc.l
diff options
context:
space:
mode:
authordimitri <dimitri@afe2bf4a-e733-0410-8a33-86f594647bc7>2001-03-04 18:15:26 (GMT)
committerdimitri <dimitri@afe2bf4a-e733-0410-8a33-86f594647bc7>2001-03-04 18:15:26 (GMT)
commit6b40e3de857d42921d0e6b736d9768d95e948da9 (patch)
tree7f8c5eaa5a77ac75d6ad859cb234980df74d587f /src/doc.l
parentef3faee6f1fd013ae63914140ea7ff59a28199c1 (diff)
downloadDoxygen-6b40e3de857d42921d0e6b736d9768d95e948da9.zip
Doxygen-6b40e3de857d42921d0e6b736d9768d95e948da9.tar.gz
Doxygen-6b40e3de857d42921d0e6b736d9768d95e948da9.tar.bz2
Release-1.2.5-20010304
Diffstat (limited to 'src/doc.l')
-rw-r--r--src/doc.l3
1 files changed, 3 insertions, 0 deletions
diff --git a/src/doc.l b/src/doc.l
index 90a2381..f5afe59 100644
--- a/src/doc.l
+++ b/src/doc.l
@@ -1786,6 +1786,9 @@ OPMASK ({B}*{OPNORM}({OPARG}?))|({OPCAST}{OPARG})
}
<DocScan>("http:"|"https:"|"ftp:"|"file:"){URLMASK} { outDoc->writeHtmlLink(yytext,yytext); }
<DocScan>[a-zA-Z_0-9\.\-]+"@"[0-9a-z_A-Z\.\-]+ { outDoc->writeMailLink(yytext); }
+<DocScan>{FILESCHAR}*{FILEECHAR}+/".\\n" { // special exception that is otherwise matches by FILEMASK
+ generateRef(*outDoc,className,yytext,inSeeBlock);
+ }
<DocScan>{FILEMASK} {
generateFileRef(*outDoc,yytext);
}