Hello, 
I have installed JDEE and the required packages and I am facing problems when
I open a Java file using this.

Please find the details as below.

Host Platform: Solaris 8.
JDEE version : jde-2.3.3
xemacs version:  XEmacs 21.1 ( patch 12 )

My complete .emacs file is as below
------------------------------------------------------------------------------------------------------------------------
;; This .emacs file illustrates the minimul setup
;; required to run the JDE.

;; Set the debug option to enable a backtrace when a
;; problem occurs.
(setq debug-on-error t)

;; Update the Emacs load-path to include the path to
;; the JDE and its require packages. This code assumes
;; that you have installed the packages in the emacs/site
;; subdirectory of your home directory.

!!!!!NOTE: Though I have split the below into two line, they are in a sinle
line in my .emacs.

(add-to-list 'load-path 
(expand-file-name "/myhome/emacs/JDEE/jdee/jde-2.3.3/lisp"))

(add-to-list 'load-path 
(expand-file-name "/myhome/emacs/JDEE/semantic/semantic-1.4.4"))

(add-to-list 'load-path 
(expand-file-name "/myhome/emacs/JDEE/speedbar/speedbar-0.13a"))

(add-to-list 'load-path 
(expand-file-name "/myhome/emacs/JDEE/emacs-lib/elib-1.0"))

(add-to-list 'load-path 
(expand-file-name "/myhome/emacs/JDEE/eieio/eieio-0.17"))


;; If you want Emacs to defer loading the JDE until you open a 
;; Java file, edit the following line
(setq defer-loading-jde nil)
;; to read:
;;
(setq defer-loading-jde t)
;;

(if defer-loading-jde
    (progn
      (autoload 'jde-mode "jde" "JDE mode." t)
      (setq auto-mode-alist
            (append
             '(("\\.java\\'" . jde-mode))
             auto-mode-alist)))
  (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)

------------------------------------------------------------------------------------------------------------------------
Now, when I open a JAVA file, I am getting the below error in the status bar


"File mode specification error: (file-error "Cannot open load file"
"debug-toolbar") "


Could you please provide any inputs on this.

thanks,
Subhakar.

Reply via email to