>>>>> "Isaac" == Isaac <[EMAIL PROTECTED]> writes:
Isaac> I have been tinkering for weeks trying to get the jde to work
Isaac> again. It was working w/ 20.4.1 but now I can't get it
Isaac> right. Any help would be appreciated.
Theres a problem in your .emacs. Its in this line.
;-----------------------
; JDE
;----------------------
(setq load-path
(nconc
'("~/emacs\emacs-20.5\site-lisp\jde-2.1.6b6/lisp")
load-path))
you have both \'s and /'s. Inside an emacs string
the \ character is the escape sequence. So if you want to use a \ you
need to use two! Alternatively you can use /'s of which you only need
one, and that should work also as well.
So either..
;-----------------------
; JDE
;----------------------
(setq load-path
(nconc
'("~\\emacs\\emacs-20.5\\site-lisp\\jde-2.1.6b6\\lisp")
load-path))
or...
;-----------------------
; JDE
;----------------------
(setq load-path
(nconc
'("~/emacs/emacs-20.5/site-lisp/jde-2.1.6b6/lisp")
load-path))
Phil