aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorGerd Moellmann2000-02-29 09:37:22 +0000
committerGerd Moellmann2000-02-29 09:37:22 +0000
commit32038c7ac09d6b4c0d5a6ac324d02bf6300a2cc9 (patch)
treef7027e38bb27521cf88dfe1a4d0dd03225c443ae
parent86f1e1ece391bf8b38ee554d5bb1b0a4dbe1536c (diff)
downloademacs-32038c7ac09d6b4c0d5a6ac324d02bf6300a2cc9.tar.gz
emacs-32038c7ac09d6b4c0d5a6ac324d02bf6300a2cc9.zip
(java-keywords): Added missing java 1.2.2 Javadoc tags.
-rw-r--r--lisp/ChangeLog15
-rw-r--r--lisp/font-lock.el9
2 files changed, 21 insertions, 3 deletions
diff --git a/lisp/ChangeLog b/lisp/ChangeLog
index 09747247560..bfb01342311 100644
--- a/lisp/ChangeLog
+++ b/lisp/ChangeLog
@@ -1,3 +1,17 @@
12000-02-28 Eli Barzilay <eli@cs.cornell.edu>
2
3 * calculator.el (calculator-use-menu): New option.
4 (calculator-initial-bindings): Changed some bindings to work as
5 macros.
6 (calculator-forced-input): Removed.
7 (calculator-restart-other-mode): New variable.
8 (calculator-mode-map): Set up menu.
9
102000-02-28 Jari Aalto <jari.aalto@poboxes.com>
11
12 * font-lock.el (java-keywords): Added missing java 1.2.2 Javadoc
13 tags.
14
12000-02-28 Michael Kifer <kifer@cs.sunysb.edu> 152000-02-28 Michael Kifer <kifer@cs.sunysb.edu>
2 16
3 * viper-cmd.el (viper-envelop-ESC-key): added the option to 17 * viper-cmd.el (viper-envelop-ESC-key): added the option to
@@ -12,7 +26,6 @@
12 * ediff-wind.el: minor comment changes. 26 * ediff-wind.el: minor comment changes.
13 * ediff.el: copyright notice date fix. 27 * ediff.el: copyright notice date fix.
14 28
15
162000-02-27 Jason Rumney <jasonr@gnu.org> 292000-02-27 Jason Rumney <jasonr@gnu.org>
17 30
18 * faces.el (face-font-family-alternatives): Add arial to helv. 31 * faces.el (face-font-family-alternatives): Add arial to helv.
diff --git a/lisp/font-lock.el b/lisp/font-lock.el
index f264805f3d7..7ce189dc967 100644
--- a/lisp/font-lock.el
+++ b/lisp/font-lock.el
@@ -3095,8 +3095,13 @@ See also `java-font-lock-extra-types'.")
3095 '("\\<\\(false\\|null\\|true\\)\\>" . font-lock-constant-face) 3095 '("\\<\\(false\\|null\\|true\\)\\>" . font-lock-constant-face)
3096 ;; 3096 ;;
3097 ;; Javadoc tags within comments. 3097 ;; Javadoc tags within comments.
3098 '("@\\(author\\|deprecated\\|link\\|return\\|see\\|version\\)\\>" 3098 (list
3099 (1 font-lock-constant-face prepend)) 3099 (concat "@\\("
3100 "author\\|deprecated\\|exception"
3101 "\\|link\\|return\\|see\\|serial\\|serialData\\|serialField"
3102 "\\|since\\|throws"
3103 "\\|version"
3104 "\\)\\>"))
3100 '("@\\(param\\)\\>[ \t]*\\(\\sw+\\)?" 3105 '("@\\(param\\)\\>[ \t]*\\(\\sw+\\)?"
3101 (1 font-lock-constant-face prepend) 3106 (1 font-lock-constant-face prepend)
3102 (2 font-lock-variable-name-face prepend t)) 3107 (2 font-lock-variable-name-face prepend t))