diff options
author | albert-github <albert.tests@gmail.com> | 2018-02-26 19:09:45 (GMT) |
---|---|---|
committer | albert-github <albert.tests@gmail.com> | 2018-02-26 19:09:45 (GMT) |
commit | a06b1020839f36e3b2ea73c09d9ead7f75983549 (patch) | |
tree | 0a8499c7c2b85d72f7799acca0bc4068cbba68cd | |
parent | b6f01ff09b17e5c2288f2418ef0a8f074456c357 (diff) | |
download | Doxygen-a06b1020839f36e3b2ea73c09d9ead7f75983549.zip Doxygen-a06b1020839f36e3b2ea73c09d9ead7f75983549.tar.gz Doxygen-a06b1020839f36e3b2ea73c09d9ead7f75983549.tar.bz2 |
Bug 688387 - JavaDoc @linkplain is not recognized
See to it that the, JavaDoc version of the, command @link cannot be confused with @linkplain.
-rw-r--r-- | src/doctokenizer.l | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/doctokenizer.l b/src/doctokenizer.l index 90a8c55..777e963 100644 --- a/src/doctokenizer.l +++ b/src/doctokenizer.l @@ -554,7 +554,7 @@ REFWORD_NOCV {LABELID}|{REFWORD2_NOCV}|{REFWORD3}|{REFWORD4_NOCV} g_token->indent = computeIndent(text,dotPos); return TK_ENDLIST; } -<St_Para>"{"{BLANK}*"@link" { +<St_Para>"{"{BLANK}*"@link"/{BLANK}+ { g_token->name = "javalink"; return TK_COMMAND; } |