Skip to content

Commit 0487319

Browse files
committed
issue #9672 doxygen does not interpret Python docstrings when typed next to SLURM directives
In case a normal comment was found the possibility for package comments was disabled.
1 parent 118609e commit 0487319

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

src/pyscanner.l

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -356,7 +356,8 @@ STARTDOCSYMS "##"
356356
if (yyextra->yyLineNr != 1) REJECT;
357357
}
358358
{POUNDCOMMENT} { // normal comment
359-
yyextra->packageCommentAllowed = FALSE;
359+
// issue 9672
360+
//yyextra->packageCommentAllowed = FALSE;
360361
}
361362
{IDENTIFIER} { // some other identifier
362363
yyextra->packageCommentAllowed = FALSE;

0 commit comments

Comments
 (0)