Miten Mehta writes:
> Hello Sir,
>
> I was using andersl font for java but
> when I installed new version of emacs/jde and saw that
> fontification changed. Please find sample java file
> and .emacs files at urls:
> http://mama.indstate.edu/users/mehta/PersonEJB.java.html
>
>
> http://mama.indstate.edu/users/mehta/.emacs
>
> some system info:
> winnt 4.0 workstation sp6
> ntemacs 21.1
> jde 2.2.8
> anders1-java-font-lock version 1.0
> elib-1.0
> semantic-1.4
> eieio-0.17beta3
> speedbar-0.14beta2
> overlay-fix.el
>
> I would prefer to get old colors back.
Remove the following lines from your .emacs file:
add-hook 'java-mode-hook 'ander-java-mode-hook)
(defun ander-java-mode-hook ()
(cond (window-system
(require 'andersl-java-font-lock)
(turn-on-font-lock))))
The functionality of andersl-java-font-lock was
folded into core Emacs a long time ago.
- Paul