summaryrefslogtreecommitdiffstats
path: root/src/doctokenizer.l
diff options
context:
space:
mode:
authorDimitri van Heesch <doxygen@gmail.com>2021-04-29 16:21:05 (GMT)
committerGitHub <noreply@github.com>2021-04-29 16:21:05 (GMT)
commit37d962f59a3ea4a376a829e7369b9caa26190344 (patch)
tree6bb2e795b5e08dd639981e28d099f5d4a0280fcc /src/doctokenizer.l
parent74a297a510cb447a17274edc577f98125ae32eec (diff)
parent2c23ce87411ae7cb09664690529e0a5e961f194e (diff)
downloadDoxygen-37d962f59a3ea4a376a829e7369b9caa26190344.zip
Doxygen-37d962f59a3ea4a376a829e7369b9caa26190344.tar.gz
Doxygen-37d962f59a3ea4a376a829e7369b9caa26190344.tar.bz2
Merge pull request #8512 from albert-github/feature/issue_8511
issue #8511 Java: linebreak after @link can cause wrong parsing of subsequent doc
Diffstat (limited to 'src/doctokenizer.l')
-rw-r--r--src/doctokenizer.l2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/doctokenizer.l b/src/doctokenizer.l
index b29afcb..bfbc345 100644
--- a/src/doctokenizer.l
+++ b/src/doctokenizer.l
@@ -610,7 +610,7 @@ RCSID "$"("Author"|"Date"|"Header"|"Id"|"Locker"|"Log"|"Name"|"RCSfile"|"Revisio
g_token->indent = computeIndent(text.data(),dotPos);
return TK_ENDLIST;
}
-<St_Para>"{"{BLANK}*"@link"/{BLANK}+ {
+<St_Para>"{"{BLANK}*"@link"/{WS}+ {
g_token->name = "javalink";
return TK_COMMAND_AT;
}