summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorDimitri van Heesch <doxygen@gmail.com>2020-07-08 12:05:39 (GMT)
committerGitHub <noreply@github.com>2020-07-08 12:05:39 (GMT)
commitcbf83033232f8c76836bd8f086bfad146ed74e00 (patch)
tree95de2cda207e466e4e85820296d8b4b89da0c791
parent1cbd78a60b3ded5cb565edc5b73cc6b11f446b84 (diff)
parent5c689c77781554e2e1a916ae473e87e8140ca7fe (diff)
downloadDoxygen-cbf83033232f8c76836bd8f086bfad146ed74e00.zip
Doxygen-cbf83033232f8c76836bd8f086bfad146ed74e00.tar.gz
Doxygen-cbf83033232f8c76836bd8f086bfad146ed74e00.tar.bz2
Merge pull request #7875 from albert-github/feature/bug_commentcnv_defaualt_rule
No default rule present in commentcnv.l
-rw-r--r--src/commentcnv.l3
1 files changed, 3 insertions, 0 deletions
diff --git a/src/commentcnv.l b/src/commentcnv.l
index e05634a..a7d74ef 100644
--- a/src/commentcnv.l
+++ b/src/commentcnv.l
@@ -870,6 +870,9 @@ MAILADR ("mailto:")?[a-z_A-Z0-9.+-]+"@"[a-z_A-Z0-9-]+("."[a-z_A-Z0-9\-]+)+[a-z
copyToOutput(yyscanner,yytext,(int)yyleng);
}
+<*>. {
+ copyToOutput(yyscanner,yytext,(int)yyleng);
+ }
%%
static void replaceCommentMarker(yyscan_t yyscanner,const char *s,int len)