mirror of
git://git.sv.gnu.org/emacs.git
synced 2026-02-04 22:50:59 -08:00
(java-keywords): Added missing java 1.2.2 Javadoc tags.
This commit is contained in:
parent
86f1e1ece3
commit
32038c7ac0
2 changed files with 21 additions and 3 deletions
|
|
@ -1,3 +1,17 @@
|
|||
2000-02-28 Eli Barzilay <eli@cs.cornell.edu>
|
||||
|
||||
* calculator.el (calculator-use-menu): New option.
|
||||
(calculator-initial-bindings): Changed some bindings to work as
|
||||
macros.
|
||||
(calculator-forced-input): Removed.
|
||||
(calculator-restart-other-mode): New variable.
|
||||
(calculator-mode-map): Set up menu.
|
||||
|
||||
2000-02-28 Jari Aalto <jari.aalto@poboxes.com>
|
||||
|
||||
* font-lock.el (java-keywords): Added missing java 1.2.2 Javadoc
|
||||
tags.
|
||||
|
||||
2000-02-28 Michael Kifer <kifer@cs.sunysb.edu>
|
||||
|
||||
* viper-cmd.el (viper-envelop-ESC-key): added the option to
|
||||
|
|
@ -12,7 +26,6 @@
|
|||
* ediff-wind.el: minor comment changes.
|
||||
* ediff.el: copyright notice date fix.
|
||||
|
||||
|
||||
2000-02-27 Jason Rumney <jasonr@gnu.org>
|
||||
|
||||
* faces.el (face-font-family-alternatives): Add arial to helv.
|
||||
|
|
|
|||
|
|
@ -3095,8 +3095,13 @@ See also `java-font-lock-extra-types'.")
|
|||
'("\\<\\(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))
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue