Hi,

If  I set "transient-mark-mode" to 1 and then try to generate the code for a console 
application
thorough the "File->JDE New->Console" menus, I get an emacs error saying :

"Symbol's function definition is void: deactivate-mark"

Any idea what this means and how to fix it ?

BTW, if I use  GNU Emacs 20.3 (on the same platform and environment), I get the 
correct desired
behavior. I am beginning to suspect that there is something flaky in our XEmacs 
installation, but then
I am a newbie at Emacs ..

I'll appreciate any help on this

Thanks

 - Soumendra Daas
[EMAIL PROTECTED]

Platform: Sun Solaris
JDE : 2.1.6.\ beta10
Emacs: XEmacs 20.4
CC Mode: 5.20

Contents of my .emacs file:

(font-lock-mode t)

;; My key bindings
;; Delete key on num keypad should delete current character.
;; The behavior of the delete key depends on whether the variable
;; delete-key-deletes-forward has been set.
(global-set-key [delete] 'delete-char)      ; num keypad delete
(setq delete-key-deletes-forward 1 )

(setq transient-mark-mode 1)

(setq load-path
     (nconc
       '(
  "/prj/bsm/testarea15/java/jde/lisp"
         )
       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 bsm-jde-mode-hook ()
  (jde-set-compile-options "-g" )
  (setq jde-compile-option-deprecation 1)
  (setq jde-compile-option-depend 1)
  (jde-set-compiler "/prj/bsm/testarea15/java/jdk/bin/javac" )
  (jde-set-global-classpath "/usr2/sdaas/Java" )
  (setq jde-use-font-lock 1)
  (setq c-auto-newline 1)
  (setq c-basic-offset 3))

(add-hook 'jde-mode-hook 'bsm-jde-mode-hook)


Reply via email to