Please CC me directly, cause I'm not part of the mailing list.
Thanks in advance :)
I've installed XEmacs and JDE (details below). As I run XEmacs I get an error. I've run the trace facility "D:\Program Files\XEmacs\XEmacs-21.1.6\i386-pc-win32\runemacs.exe" -debug-init
It has produced the following trace.
Signaling: (file-error "Cannot open load file" "gud")
signal(file-error ("Cannot open load file" "gud"))
load("gud" nil t nil)
require(gud)
load-internal("jde-db" nil t nil undecided)
load("jde-db" nil t nil)
require(jde-db)
load-internal("jde" nil t nil undecided)
load("jde" nil t nil)
require(jde)
load-internal("~\\.emacs" t t t undecided)
load("~\\.emacs" t t t)
load-user-init-file("")
load-init-file()
command-line()
normal-top-level()
I guess I don't have the package gud? Anyone know where to get it?
Regards,
Alex Cachia
Below are the details of my installation.
host platform = Windows NT
JDE version = JDE 2.1.5
Emacs version = XEmacs [version 21.1; May 1999] (formerly known as Lucid Emacs)
complete contents of .emacs file
(setq load-path
(nconc
'(
"D:/Program Files/XEmacs/xemacs-packages/site/jde"
;; Add paths to other add-on packages here.
)
load-path))
;; Tell Emacs to load the entire JDE package at startup (only once).
(require 'jde)
;; Sets the basic indentation for Java source files
;; to two spaces.
(defun my-jde-mode-hook ()
(setq c-basic-offset 2))
(add-hook 'jde-mode-hook 'my-jde-mode-hook)
;; Include the following only if you want to run
;; bash as your shell.
;; Setup Emacs to run bash as its primary shell.
(setq binary-process-input t)
(setq shell-file-name "bash")
(setq explicit-shell-file-name shell-file-name)
(setenv "SHELL" shell-file-name)
(setq explicit-sh-args '("-login" "-i"))
(setq w32-quote-process-args ?\") ;; Use Cygnus quoting rules.
