RE: Javadoc comments

2002-09-12 Thread Berndl, Klaus
Hi! Smart ENTER in all cc-mode based major-modes (so also for jde-mode): Here is what i have bound to RET in my c-mode-common-hook (jde-mode inherits all this!): (defun my-cc-mode-return () Intelligent line breaking in all

cygwin-emacs and classpath under jdee

2002-09-12 Thread Artur Hefczyc
Hello, Recently I installed on my WinXP box last cygwin version with emacs-21.2 with X toolkit. Jdee translates classpath almost well except that it puts ':' between directories instead of ';'. Earlier when I compiled emacs on my own under this environment it worked well, I could even use both

RE: cygwin-emacs and classpath under jdee

2002-09-12 Thread Berndl, Klaus
Do not know exactly, but JDE checks sometimes the following condition: (if (eq system-type 'cygwin32)...) and here is: (defvar jde-classpath-separator (if (eq system-type 'cygwin32) ; path-separator) The separator to use in a classpath. This is usually

Re: Javadoc comments

2002-09-12 Thread Guy Worthington
Thanks for posting your Java specific code Klaus, my .emacs is now packed to the gunwales with your cc-mode and tempo enhancements.

RE: Javadoc comments

2002-09-12 Thread Heinz-Dieter Conradi
hi, On Wed, 11 Sep 2002, Daniel Hegyi wrote: I know. However, is there a way of getting this functionality when starting a new line (i.e., hitting ENTER)? I'd like to get an asterisk then as well. I discovered by accident that if you turn on auto-fill-mode and begin typing within a

RE: Javadoc comments

2002-09-12 Thread Nick Sieger
Thanks for the nifty code, Klaus. Your `my-cc-mode-return' function led me to wonder if there was a way to make auto-fill/filladapt obey string semantics. It'd be slick if hitting space after the fill-column would close the current string and re-open it in the proper way on the next line. I

Re: Javadoc comments

2002-09-12 Thread Phillip Lord
Nick == Nick Sieger [EMAIL PROTECTED] writes: Nick Thanks for the nifty code, Klaus. Your `my-cc-mode-return' Nick function led me to wonder if there was a way to make Nick auto-fill/filladapt obey string semantics. It'd be slick if Nick hitting space after the fill-column would close

Starting to use the beta: What do I need to know

2002-09-12 Thread Dale Wyttenbach
Title: Starting to use the beta: What do I need to know I am trying 2.2.9beta12 for the first time today for the purpose of debugging an application. I just stumbled across the fact that there is a new variable jde-sourcepath that I should know about. Is there a list of these types of changes

Starting to use the beta: What do I need to know

2002-09-12 Thread Paul Kinnucan
Dale Wyttenbach writes: I am trying 2.2.9beta12 for the first time today for the purpose of debugging an application. I just stumbled across the fact that there is a new variable jde-sourcepath that I should know about. Is there a list of these types of changes that I can refer to?

RE: cygwin-emacs and classpath under jdee

2002-09-12 Thread Andy Piper
Earlier when I compiled emacs on my own under this environment it worked well, I could even use both unix-like and windows-like path style when loeaded files (i mean i could use: d:/file.java and /cygdrive/d/file.java) and in paths I always got ';' as needed, however it looks like

Re: JDE-2.2.9beta12 available at

2002-09-12 Thread TAKAHASHI Toru
I'm getting the following error when trying to run jde-ant-build: Debugger entered--Lisp error: (wrong-type-argument arrayp nil) I met a same error in JDE 2.2.9beta12. My work around is to set jde-ant-read-target be 'on'. jde-ant-escape(nil) (setq target (jde-ant-escape target)) target

Re: JDE-2.2.9beta12 available at

2002-09-12 Thread Jeff Rancier
Thank you Toru.That certainly solves the issue of not building. Jeff - Original Message - From: TAKAHASHI Toru To: [EMAIL PROTECTED] Sent: Thursday, September 12, 2002 12:55 PM Subject: Re: JDE-2.2.9beta12 available at I'm getting the following error