Cannot open load file : no such file or directory , semantic-load

3.1k Views Asked by At

I am trying to install jdeeon my emacs,and this is my configuration in .emacs:

(require 'cedet)
(add-to-list 'load-path (format "%s/jdee/lisp" "~/.emacs.d/lisp"))
(autoload 'jde-mode "jde" "JDE mode" t)
(setq auto-mode-alist (append '(("\\.java\\'" . jde-mode)) auto-mode-alist))

but when I edit java file , it reports an error:

File mode specification error:
(file-error "Cannot open load file" "no such file or directory" "semantic-load")

and then I download the cedet-1.1,find there is a smantic-load.el file in the cedet-1.1 directory

emacs version : 24.5
jdee version : 2.4.0.1
OS platform : windows 7

How to fix this?

0

There are 0 best solutions below