summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authoralbert-github <albert.tests@gmail.com>2020-06-26 16:13:50 (GMT)
committeralbert-github <albert.tests@gmail.com>2020-06-26 16:13:50 (GMT)
commit5c689c77781554e2e1a916ae473e87e8140ca7fe (patch)
treed2014e1bd16592e335d403274161606d499fa61e
parentd5916c06fba9667911a19cf658e7c5ab54daf72c (diff)
downloadDoxygen-5c689c77781554e2e1a916ae473e87e8140ca7fe.zip
Doxygen-5c689c77781554e2e1a916ae473e87e8140ca7fe.tar.gz
Doxygen-5c689c77781554e2e1a916ae473e87e8140ca7fe.tar.bz2
No default rule present in commentcnv.l
In the file `commentcnv.l` there is no default rule present, resulting in the, non understandable, output as indicated in https://github.com/doxygen/doxygen/issues/7873#issuecomment-650100405 (this is not the cause of the problem as reported with issue https://github.com/doxygen/doxygen/issues/7873, but quite annyoing)
-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)