I get the following errors when I debug an application.
(1) (error/warning) Error in process filter: (file-error Opening directory
No such file or directory
/home/users/f980933/summit/subscriber/d:/jdk1.2/src/)
(2) (error/warning) Error in process filter: (file-error Opening directory
No such file or directory
/home/users/f980933/summit/subscriber/d:/jdk1.2/src/)
(3) (error/warning) Error in process filter: (file-error Opening directory
No such file or directory
/home/users/f980933/summit/subscriber/d:/jdk1.2/src/)
I am running
Solaris 5.6
Xemacs 21.1 patch 3
JDE 2.1.6beta22
the same problem is there on JDE 2.1.5
My .emacs file looks like this
;; the JDE in the specified subdirectory of your home
;; directory.
(setq load-path
(nconc
'(
"~/jde/jde-2.1.6beta22/lisp"
; "~/jde/jde-2.1.5"
)
load-path))
;; Tell Emacs to load the entire JDE package at
star
tup (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 qu
oting rules.
(setq jde-db-source-paths (list "~/summit/subscriber" "~"))
Regards,
Lars