Hi,
    I've encountered a JDE installation problem, please help!!!  I am running Windows 98, jde2.1.8, emacs20.7.  The problem shown at the status bar in Emacs20.7 says "Error in init file: File error: "Cannot open load file", "jde""  I've never encoutered this problem before when I had jde2.1.5 and emacs20.3.1.  Wondering if it has to do with the directory structure of jde2.1.5.  emacs20.7 is installed under c:/.  jde2.1.8 folder is installed under c:/emacs20.7.  Following is the minimum .emacs file I copied from http://sunsite.auc.dk/jde/_emacs_jde with path inside setq load-path changed to c:/emacs20.7/jde2.1.8:
 
 
;; This .emacs file illustrates the minimul setup
;; required to run the JDE.
 
;; Update the Emacs load-path to include the path to
;; the JDE. This code assumes that you have installed
;; the JDE in the specified subdirectory of your home
;; directory.
(setq load-path
      (cons
       '(
  "c:/emacs20.7/jde2.1.8"
  )
       load-path))
 
;; Tell Emacs to load the entire JDE package at startup (only once).
(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)
 
;; Include the following only if you want to run
;; bash as your shell.
 
;; Setup Emacs to run bash as its primary shell.
(setq binary-process-input t)
(setq shell-file-name "bash")
(setq explicit-shell-file-name shell-file-name)
(setenv "SHELL" shell-file-name)
(setq explicit-sh-args '("-login" "-i"))
(setq w32-quote-process-args ?\") ;; Use Cygnus quoting rules.
       
 
Thanks,
Kevin
 

Reply via email to