RE: Question/Bug to 'jde-detect-java-buffer-activation

2004-06-02 Thread Berndl, Klaus
;; to a buffer belonging to another. (make-local-hook 'post-command-hook) Hmm, I don't think I need the above form because the add-hook form below makes the variable local anyway. Indeed. (add-hook 'post-command-hook

Re: feedback on 2.3.4beta4

2004-06-02 Thread Ed Mooney
Hi Paul, Paul Kinnucan wrote: Ed Mooney writes: I installed 2.3.4beta4 on Solaris 9 and have these comments. * I had to make this change to get lisp/makefile to work: all: test -d $(SEMANTIC) -a -d $(SPEEDBAR) -a -d $(ELIB) -a -d $(EIEIO) ***

Re: jde-speedbar-min-version

2004-06-02 Thread Nicholas Sushkin
Nicholas Sushkin writes: Seems that the variable jde-speedbar-min-version is not defined in the lates JDE beta source. Just installed the latest beta, when I select menu JDE-Browse-Source Files, I get the following error: Symbol's value as variable is void:

Re: Question/Bug to 'jde-detect-java-buffer-activation

2004-06-02 Thread Suraj Acharya
On Wed, 2 Jun 2004 09:29:22 +0200 , Berndl, Klaus [EMAIL PROTECTED] wrote: ;; to a buffer belonging to another. (make-local-hook 'post-command-hook) Hmm, I don't think I need the above form because the add-hook form below makes the variable local anyway. Indeed.

Re: Customizing jde-entering-java-buffer-hook

2004-06-02 Thread Suraj Acharya
This works for me, but I have it after a (require 'jde) in my .emacs. Putting it before the require statement results in JDE clobbering the old value during its load. Suraj - Original Message - From: Berndl, Klaus [EMAIL PROTECTED] Date: Tue, 1 Jun 2004 14:38:43 +0200 Subject:

Re: AspectJ for JDE?

2004-06-02 Thread Suraj Acharya
There's aspectjforemacs http://aspectj4emacs.sourceforge.net/ which is JDE aware, but it has not been updated in a while. Suraj On Wed, 2 Jun 2004 08:04:45 -0500, Paul Landes [EMAIL PROTECTED] wrote: Are there any AspectJ extensions or libraries written for JDE? Thanks in advance! --

Re: printing visual diffs?

2004-06-02 Thread Raul Acevedo
The Linux version is very nice, and does pretty visual side-by-side diffs... ... with no Print button in sight. Sigh.. Raul Suraj Acharya wrote: I've seen co-workers use perforce's client tool on non-windows machines. http://www.perforce.com/perforce/loadbeta.html I'm not sure if

RE: Real time syntax checking ?

2004-06-02 Thread Nascif Abousalh-Neto
Also note that Flymake can be used to validate XML files on the fly, even ones without a formal DTD. *Very* convenient when playing with Ant build.xml files. To enable XML validation, you will need the XMLStar tool from this site: http://xmlstar.sourceforge.net/ Regards, Nascif

Re: what it can do...

2004-06-02 Thread Alexander Wallace
I want to thank all that replied to my questions, i'm going to give this a try, I'm sure I'll have more questions... Again, thanks! Yes, both the JDEE's source-level debugging interface to jdb and JDEbug enable you to attach the debugger to an existing process on the local or a remote

patch for jde menu

2004-06-02 Thread Paul Kinnucan
Jens Lautenbacher writes: I assume that what is meant in the jde menu are toggle buttons, not radio button Hi Jens, I've committed your changes. Thanks, Paul

Re: Question/Bug to 'jde-detect-java-buffer-activation

2004-06-02 Thread Paul Kinnucan
Suraj Acharya writes: On Wed, 2 Jun 2004 09:29:22 +0200 , Berndl, Klaus [EMAIL PROTECTED] wrote: ;; to a buffer belonging to another. (make-local-hook 'post-command-hook) Hmm, I don't think I need the above form because the add-hook form below makes the

RE: Question/Bug to 'jde-detect-java-buffer-activation

2004-06-02 Thread Paul Kinnucan
Berndl, Klaus writes: ;; to a buffer belonging to another. (make-local-hook 'post-command-hook) Hmm, I don't think I need the above form because the add-hook form below makes the variable local anyway. Indeed. I have removed the redundant form in the JDEE