Hi,

I have just downloaded the JDE 2.2.5. Everything works fine except
that every time after I load a .java file, the mini-buffer displays
the following error message. However, the JDE still seems to be
working correctly...

   File mode specification error: (invalid-function (macro lambda
   (token) "Retrieve from TOKEN the token identifier. ie, the symbol
   'variable, 'function, 'type, or other." (\` (nth 1 (\, token))))) 

I have a PC running Windows NT 4.0/SP6, with the following software

   - Emacs 20.6.1
   - JDE 2.2.5
   - semantics 1.3.2
   - speedbar 0.13a
   - elib 1.0

I also include the ".emacs" file and the log in my *Messages* buffer.

Can some one help me solve this problem?

Thanks,

Ben


;;==========================================================================
=
;; my .emacs file
;;
(add-to-list 'load-path 
             (expand-file-name "d:/utils/emacs-20.6/ported/jde-2.2.5/lisp"))
(add-to-list 'load-path 
             (expand-file-name "d:/utils/emacs-20.6/ported/semantic-1.3.2"))
(add-to-list 'load-path 
             (expand-file-name "d:/utils/emacs-20.6/ported/speedbar-0.13a"))
(add-to-list 'load-path 
             (expand-file-name "d:/utils/emacs-20.6/ported/elib-1.0"))


(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.
(add-hook 'jde-mode-hook 'my-jde-mode-hook)

;;(define-key java-mode-map "\C-c\C-c" 'compile)

(defun my-jde-mode-hook ()
  (require 'cc-mode)
  (c-initialize-cc-mode)
  (c-set-style "stroustrup")
  (setq c-basic-offset 4)
  (c-set-offset 'substatement-open 0)
  (c-set-offset 'inline-open 0)
  (setq c-tab-always-indent t)
  ;;;(auto-fill-mode 75)
 )

;;==========================================================================
=
;; log from buffer *Messages* 
;;
(D:\Utils\emacs-20.6\bin\emacs.exe)
For information about the GNU Project and its goals, type C-h C-p.
Making completion list...
Loading view...
Loading view...done
Making completion list...
Loading jde (source)...
Loading cus-face...
Loading cus-face...done
Loading regexp-opt...
Loading regexp-opt...done
Loading backquote...
Loading backquote...done
Loading wid-browse...
Loading wid-browse...done
Loading cl-macs...
Loading cl-macs...done
Bootstrapping objects...
Bootstrapping objects...done
Loading cl-extra...
Loading cl-extra...done
Loading jde (source)...done
Loading cl-seq...
Loading cl-seq...done
Setting JDE variables to startup values...
Fontifying X.java...
Fontifying X.java... (regexps.........................................)
Setting JDE variables to startup values...
File mode specification error: (invalid-function (macro lambda (token)
"Retrieve from TOKEN the token identifier.
ie, the symbol 'variable, 'function, 'type, or other." (\` (nth 1 (\,
token)))))
Fontifying *scratch*...
Fontifying *scratch*... (regexps............)
File mode specification error: (invalid-function (macro lambda (token)
"Retrieve from TOKEN the token identifier.
ie, the symbol 'variable, 'function, 'type, or other." (\` (nth 1 (\,
token)))))
Beginning of buffer
Beginning of buffer

Reply via email to