changeset 27905:2c4966aa6acd

(java-keywords): Added missing java 1.2.2 Javadoc tags.
author Gerd Moellmann <gerd@gnu.org>
date Tue, 29 Feb 2000 09:35:38 +0000
parents af501f05394a
children d2e57e7498a9
files lisp/font-lock.el
diffstat 1 files changed, 7 insertions(+), 2 deletions(-) [+]
line wrap: on
line diff
--- a/lisp/font-lock.el	Tue Feb 29 09:34:42 2000 +0000
+++ b/lisp/font-lock.el	Tue Feb 29 09:35:38 2000 +0000
@@ -3095,8 +3095,13 @@
     '("\\<\\(false\\|null\\|true\\)\\>" . font-lock-constant-face)
     ;;
     ;; Javadoc tags within comments.
-    '("@\\(author\\|deprecated\\|link\\|return\\|see\\|version\\)\\>"
-      (1 font-lock-constant-face prepend))
+    (list
+     (concat "@\\("
+	     "author\\|deprecated\\|exception"
+	     "\\|link\\|return\\|see\\|serial\\|serialData\\|serialField"
+	     "\\|since\\|throws"
+	     "\\|version"
+	     "\\)\\>"))
     '("@\\(param\\)\\>[ \t]*\\(\\sw+\\)?"
       (1 font-lock-constant-face prepend)
       (2 font-lock-variable-name-face prepend t))