I use NTEmacs 20.3.1 with NT 4.0 and JDE 2.1.5
I start the Intreper (M-x bsh), I see the message
BeanShell 0.96 beta - by Pat Niemeyer ([EMAIL PROTECTED])
bsh %
I type print("Hello"); and the key Return, I see nothing but I use in
the menu Signals/EOF, I see the response
Hello in the bsh buffer, but after I can't use the interpreter, when I
see the task manager, the task javaw 98% of the cpu, a
I use this minimal _emacs and I have the same problems.
;; 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
(nconc
'(
"~/../lisp/jde-2.1.5"
)
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.
;; Configure Emacs to use the default browser on your system
;; to display the JDE documentation.
(defvar shell-execute-helper "shelex.exe")
(defun shell-execute-url (url &optional new-window)
"Invoke the shell-execute-helper program to call ShellExecute and
launch
or re-direct a web browser on the specified url."
(interactive "sURL: ")
(call-process shell-execute-helper nil nil nil url))
(setq browse-url-browser-function 'shell-execute-url)
Any help would be appreciated. Thanks
Denis.
begin:vcard
n:Minier;Denis
x-mozilla-html:FALSE
org:Satis
version:2.1
email;internet:[EMAIL PROTECTED]
x-mozilla-cpt:;0
fn:Denis Minier
end:vcard