Mercurial > emacs
changeset 26915:11fddded9ceb
(java-keywords): Add Javadoc tags as of JDK 1.2.1.
author | Gerd Moellmann <gerd@gnu.org> |
---|---|
date | Thu, 16 Dec 1999 12:08:25 +0000 |
parents | 09c7b74fa57f |
children | 1255a8a95f46 |
files | lisp/font-lock.el |
diffstat | 1 files changed, 4 insertions(+), 1 deletions(-) [+] |
line wrap: on
line diff
--- 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