summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorDimitri van Heesch <doxygen@gmail.com>2020-09-16 18:10:25 (GMT)
committerGitHub <noreply@github.com>2020-09-16 18:10:25 (GMT)
commit08ee5542b942421c49d4f963a7f105fa8e49fe2e (patch)
tree4183ffbc10118990839bc9c392014c3d5b3bb871
parentbdb9c1141a712d7309c22084f2d45c22ecc31aed (diff)
parent2d11c2c58faa79ccc511523c68f7488cfd4232bd (diff)
downloadDoxygen-08ee5542b942421c49d4f963a7f105fa8e49fe2e.zip
Doxygen-08ee5542b942421c49d4f963a7f105fa8e49fe2e.tar.gz
Doxygen-08ee5542b942421c49d4f963a7f105fa8e49fe2e.tar.bz2
Merge pull request #8003 from albert-github/feature/bug_alias
Command \ilinebr remained
-rw-r--r--src/commentscan.l12
1 files changed, 6 insertions, 6 deletions
diff --git a/src/commentscan.l b/src/commentscan.l
index 5a71b14..05643b5 100644
--- a/src/commentscan.l
+++ b/src/commentscan.l
@@ -1043,6 +1043,12 @@ RCSTAG "$"{ID}":"[^\n$]+"$"
<ClassDocArg1,CategoryDocArg1>. { // ignore other stuff
}
+<ClassDocArg2>{DOCNL} {
+ //addOutput(yyscanner,'\n');
+ //if (*yytext=='\n') yyextra->lineNr++;
+ unput('\n');
+ BEGIN( Comment );
+ }
<ClassDocArg2>{FILE}|"<>" { // second argument; include file
yyextra->current->includeFile = yytext;
BEGIN( ClassDocArg3 );
@@ -1051,12 +1057,6 @@ RCSTAG "$"{ID}":"[^\n$]+"$"
yyextra->lineNr++;
addOutput(yyscanner,'\n');
}
-<ClassDocArg2>{DOCNL} {
- //addOutput(yyscanner,'\n');
- //if (*yytext=='\n') yyextra->lineNr++;
- unput('\n');
- BEGIN( Comment );
- }
<ClassDocArg2>. { // ignore other stuff
}