Hi
I'm using NT Emacs 20.3.1 (the newest I found) on NT 4 SP 4.
It works.
Now I wanted to install jde and the CUA module and I fail.
I have a file called .emacs in d:\
HOME is set to d:\
I put all .el files in the lisp dir of emacs (I know it is recommended
to put them
somewhere else, but I did it and I failed, too).
.emacs looks like this (standard I would guess):
(pc-selection-mode)
(load "cua-mode")
(CUA-mode t)
;; 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.
;; 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)
(pc-selection-mode)
(load "cua-mode")
(CUA-mode t)
Neither cuamode nor jde work.
The error when I start emacs is:
Error in init file: Symbol's value as variable is void: \320\317
I have no idea what that means
And I wonder if I need anders-font-lock or if it is somehow now built in
into jde?
Because the doc doesn't say it again, as before.
Thanks
Kay Schulz
[EMAIL PROTECTED]