Gentle reader:
When I say font-locking I'm referring to the highlighting in color of
the Java code to make it easier to read.
I tried moving jde-java-font-lock.el and removed its require from jde.el
I still get no font-locking.
java-mode font locking works, as does emacs-lisp, shell, etc.
in jde-mode all I get is java-doc (/** ... */) outside of classes.
Occasionally, after using the wizard to import an interface the buffer
will font-lock and stay that way, but just that buffer and I have
never reliably.
global-font-lock-mode is true in all buffers.
I hope you can help, I moved from xemacs to get better functionality
out of jdee but loosing font-locking is a big compromise.
Thank you
Ed
Informations about my environment, including the .emacs file, trimmed
down for this problem.
I'm on Linux (redhat 7.1)
emacs 20.7.1
jde 2.2.8 (not byte compiled)
eiei0 0.16
elib 1.0
semantic 1.4beta7
speedbar 0.13
My .emacs (for debugging this problem only)
;; Turn on font-lock mode for Emacs
(setq global-font-lock-mode t)
;;
;; JDE update elisp files
;;
(add-to-list 'load-path (expand-file-name
"/usr/share/emacs/site/jde/lisp"))
(add-to-list 'load-path (expand-file-name
"/usr/share/emacs/site/semantic"))
(add-to-list 'load-path (expand-file-name
"/usr/share/emacs/site/speedbar"))
(add-to-list 'load-path (expand-file-name
"/usr/share/emacs/site/elib"))
(add-to-list 'load-path (expand-file-name
"/usr/share/emacs/site/eieio"))
(require 'jde)
(setq jde-use-font-lock nil)