1
0
mirror of https://git.savannah.gnu.org/git/emacs.git synced 2024-11-23 07:19:15 +00:00

(java-keywords): Add MATCH-HIGHLIGHT part for

javadoc tags.
This commit is contained in:
Gerd Moellmann 2000-11-20 16:17:34 +00:00
parent 81459ac9e2
commit 1bc7654adc

View File

@ -2899,7 +2899,8 @@ See also `java-font-lock-extra-types'.")
"\\|link\\|return\\|see\\|serial\\|serialData\\|serialField"
"\\|since\\|throws"
"\\|version"
"\\)\\>"))
"\\)\\>")
'(1 font-lock-constant-face prepend))
'("@\\(param\\)\\>[ \t]*\\(\\sw+\\)?"
(1 font-lock-constant-face prepend)
(2 font-lock-variable-name-face prepend t))