We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent c97f00e commit 97c5414Copy full SHA for 97c5414
src/fortranscanner.l
@@ -1130,6 +1130,7 @@ private {
1130
if (YY_START == FVariable) REJECT; // Just be on the safe side
1131
if (YY_START == String) REJECT; // ";" ignored in strings
1132
if (YY_START == StrIgnore) REJECT; // ";" ignored in regular yyextra->comments
1133
+ if (YY_START == DocBlock) REJECT; // ";" ignored in documentation blocks
1134
yyextra->inputStringSemi = " \n"+QCString(yytext+1);
1135
yyextra->lineNr--;
1136
pushBuffer(yyscanner,yyextra->inputStringSemi);
0 commit comments