summaryrefslogtreecommitdiffstats
path: root/src/doctokenizer.l
diff options
context:
space:
mode:
authoralbert-github <albert.tests@gmail.com>2018-02-26 19:09:45 (GMT)
committeralbert-github <albert.tests@gmail.com>2018-02-26 19:09:45 (GMT)
commita06b1020839f36e3b2ea73c09d9ead7f75983549 (patch)
tree0a8499c7c2b85d72f7799acca0bc4068cbba68cd /src/doctokenizer.l
parentb6f01ff09b17e5c2288f2418ef0a8f074456c357 (diff)
downloadDoxygen-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.
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 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;
}