Redhat Linux 7.2 (2.4.7-10)
Emacs 2.7.1
JDE 2.2.8

**MESSAGES**
Loading cl-extra... 
Loading cl-extra...done Loading 
/usr/share/emacs/site-lisp/site-start.d/aspell-init.el (source)... Loading 
/usr/share/emacs/site-lisp/site-start.d/aspell-init.el (source)...done 
Loading /usr/share/emacs/site-lisp/site-start.d/lang.emacs.el (source)... 
Loading /usr/share/emacs/site-lisp/site-start.d/lang.emacs.el (source)...done 
Loading /usr/share/emacs/site-lisp/site-start.d/po-mode-init.el (source)... 
Loading /usr/share/emacs/site-lisp/site-start.d/po-mode-init.el 
(source)...done Loading /usr/share/emacs/site-lisp/site-start.d/psgml-init.el 
(source)... Loading /usr/share/emacs/site-lisp/site-start.d/psgml-init.el 
(source)...done 
Loading cus-face... 
Loading cus-face...done Finished loading 
/usr/share/emacs/site-lisp/egg/leim-list.el 
and load others... Error in init file: File error: "Cannot open load file", 
"jde"
**END MESSAGES**

**.emacs**
;; Red Hat Linux default .emacs initialization file 
 
;; Are we running XEmacs or Emacs? (defvar running-xemacs (string-match 
"XEmacs\\|Lucid" emacs-version)) 
 
(setq debug-on-error t) 
 
(add-to-list 'load-path(expand-file-name 
"/home/acartine/jde/jde-2.2.8/lisp")) 
(add-to-list 'load-path(expand-file-name 
"/home/acartine/jde/semantic-1.4beta14")) 
(add-to-list 'load-path(expand-file-name 
"/home/acartine/jde/speedbar-0.14beta3")) 
(add-to-list 'load-path(expand-file-name "/home/acartine/jde/elib-1.0")) 
(add-to-list 'load-path(expand-file-name "/home/acartine/jde/eieie-0.16")) 
 
;; If you want Emacs to defer loading the JDE until you open a 
;; Java file, edit the following line 
(setq defer-loading-jde nil) 
;; to read: 
;; 
;; (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. 
(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 shell-file-name "bash") 
(setq shell-command-switch "-c") 
(setq explicit-shell-file-name shell-file-name) 
(setenv "SHELL" shell-file-name) 
(setq explicit-sh-args '("-login" "-i")) 
(if (boundp 'w32-quote-process-args) 
(setq w32-quote-process-args ?\")) ;; Include only for MS Windows. 
 
;;;; JDE custom set variables;;;;;;; 
(custom-set-variables '(jde-compile-option-command-line-args "-g") 
'(jde-bug-jdk-directory ("$JAVA_HOME") '(jde-db-source-directories (quote 
("./" "/soft/fftsoft/java/src"))) '(jde-db-debugger (quote ("JDEbug" "" . 
"Executable"))) 
'(jde-bug-jpda-directory "$JAVA_HOME") 
'(jde-bug-vm-includes-jpda-p t) '(delete-selection-mode nil nil (delsel)) 
'(scroll-bar-mode (quote right)) 
'(jde-run-classic-mode-vm t)) 
(custom-set-faces) 
 
;; Set up the keyboard so the delete key on both the regular keyboard ;; and 
the keypad delete the character under the cursor and to the right ;; under X, 
instead of the default, backspace behavior. 
(global-font-lock-mode t) 
)) 
 
;; Always end a file with a newline 
(setq require-final-newline t) 
 
;; Stop at the end of the file, not just add lines (setq 
next-line-add-newlines nil) 
 
;; Enable wheelmouse support by default 
(if (not running-xemacs) 
(require 'mwheel) ; Emacs 
(mwheel-install) ; XEmacs 
) 

**END .emacs**

Reply via email to