Hi,
2 little things, cheers Matthew.:
User Guide :
(defun my-jde-mode-hook ()
(message "my-jde-mode-hook function executed"))
(add-hook 'jde-mode-hooks 'my-jde-mode-hook)
I see in the troubleshooting FAQ this is ok for 19.34 (due to some
bug) but should be
(add-hook 'jde-mode-hook 'my-jde-mode-hook) for xemacs 20.x
===========================================================================
(jde 2.1.5 (or 2.1.2), xemacs 20.4, cc-mode 5.2)
Is it just me, or do inheritance lines not work in jde?
(Shouldn't take too long to check.
If it's just me, then I'll post my .emacs etc)
If I set java-mode, they behave as I would expect.
jde-mode:
public class foo //topmost-intro
implements bar, //topmost-intro-cont
baz, //topmost-intro-cont
bat //statement-cont
{
...
}
java-mode:
public class foo //topmost-intro
implements bar, //inher-intro
baz, //inher-cont
bat //inher-cont
{
...
}