At 02:37 PM 1/15/01 -0500, Niranjan Rao wrote:
>I don't know what exactly your problem is, but I noticed that your .emacs
>file, quotes are not properly terminated. The first line
>(setq load-path (cons "D:\emacs-20.7\jde-2.2.6\" load-path))
>
>is causing the problems. May be you should change it to
>
>(setq load-path (cons "D:\emacs-20.7\jde-2.2.6" load-path))
>
>Notice the missing slash after jde-2.2.6. May be that is the problem, may be
>that is not. Please let the list know if you still have problem after fixing
>that. 
>

Note also that backslash (\) is the escape character for Emacs Lisp strings
(as it is for Java strings) and so if  you insist on using backslashes in
paths (not necessary, forward slashes work just as well on Windows), you
must double them, e.g.,

(setq load-path (cons "D:\\emacs-20.7\\jde-2.2.6" load-path))

Personally I avoid backslashes like the plague in paths.

- Paul

Reply via email to