# HG changeset patch # User Gerd Moellmann # Date 945346105 0 # Node ID 11fddded9ceb11721f93e8cc64cef592e560cdd0 # Parent 09c7b74fa57fdbcd7c2c00eb6c2b4a12f92777fa (java-keywords): Add Javadoc tags as of JDK 1.2.1. diff -r 09c7b74fa57f -r 11fddded9ceb lisp/font-lock.el --- a/lisp/font-lock.el Thu Dec 16 09:43:32 1999 +0000 +++ b/lisp/font-lock.el Thu Dec 16 12:08:25 1999 +0000 @@ -2943,11 +2943,14 @@ '("\\<\\(false\\|null\\|true\\)\\>" . font-lock-constant-face) ;; ;; Javadoc tags within comments. - '("@\\(author\\|exception\\|return\\|see\\|version\\)\\>" + '("@\\(author\\|deprecated\\|link\\|return\\|see\\|version\\)\\>" (1 font-lock-constant-face prepend)) '("@\\(param\\)\\>[ \t]*\\(\\sw+\\)?" (1 font-lock-constant-face prepend) (2 font-lock-variable-name-face prepend t)) + '("@\\(exception\\|throws\\)\\>[ \t]*\\(\\S-+\\)?" + (1 font-lock-constant-face prepend) + (2 font-lock-type-face prepend t)) ))) (setq java-font-lock-keywords-3