Hi,

JDE initialization fails on my system (XEmacs 21.1.9 on Linux) with
2.1.6, it worked with the latest beta.

The reason for this is

(defcustom jde-bug-debugger-host-address system-name
  "*Address of system on which JDEbug is running.
The default value is the value of the standard Emacs variable `system-name'."
  :group 'jde-debug
  :type 'string)

While system-name might be a standard Emacs variable it is a function
in XEmacs - at least in my version 8^). The workaround for me is to
change it to

(defcustom jde-bug-debugger-host-address (system-name)
   ...

My lisp is far to limited to change this to an "if this is XEmacs do
this else do that" solution, sorry.

Stefan

Reply via email to