PATCH: max-lisp-eval-depth exceeded on CVS Emacs

2005-09-21 Thread Jason Rumney
After a fresh install of Emacs and JDE on a new machine, I found that a patch I thought I'd submitted some time ago is not in either JDE 2.3.5 or CVS. The problem is caused by a change in behaviour of (expand-file-name .. dir) when dir is the root directory on a Windows drive. In previous

Re: cygwin emacs path problem

2005-04-19 Thread Jason Rumney
Paul Kinnucan wrote: Hi Felix, As I understand it, there are two versions of cygwin emacs: (A) a version of Unix Emacs modified specifically to run in the Cygwin environment and (B) the standard Unix version of Emacs compiled, using cygwin gcc, to run in the Cygwin environment JDEE

Re: Auto-format code to width = 80

2004-12-14 Thread Jason Rumney
Mark D. Hansen wrote: Can anyone tell me how to configure emacs/jde so that my java code will auto-format to have column width 80? Thanks, Mark auto-fill-mode

Patch: File menu in recent CVS Emacs no longer called 'files

2004-11-10 Thread Jason Rumney
The File menu has recently been renamed from 'files to 'file in Emacs CVS. This has revealed a dependancy in JDEE that can easily be fixed by using menu-bar-file-menu (which has existed since at least 19.27) which also simplifies the code a little: *** jde.el-orig Fri Oct 29 00:43:02 2004 ---

Re: Feedback needed on w3m support

2004-10-04 Thread Jason Rumney
Paul Kinnucan wrote: I'd also appreciate it if someone who is using w3m on Unix would take a look at the URL that the JDEE generates for local files and tell me what's wrong with it and what URL would be acceptable to w3m. There was a thread about this last week. The problem is a double slash

Re: JDE 2.3.4beta3: strange overlining

2004-05-11 Thread Jason Rumney
Eric M. Ludlam [EMAIL PROTECTED] writes: I'm getting the weird effect shown in the attached GIF using JDE 2.3.4beta3 and cedet1.0beta2 on Emacs 21.3. All non-public methods are 'overlined', which is really not pleasant. I guess it's some kind of highlighting of non-public methods that has gone

Re: Avoid JDEE to shadow standard libraries

2004-05-03 Thread Jason Rumney
David PONCE [EMAIL PROTECTED] writes: + (condition-case nil + ;; If the library if available, use it. + (require feature) + (error + ;; Try to use the one from the JDEE's distribution. + (require feature (format jde-%s feature) It might be cleaner to use:

Re: JDE 2.3.3 craches emacs 21.3 (windows XP)

2004-02-19 Thread Jason Rumney
Gustavo Tenrreiro wrote: Hi, I just upgraded to emacs 21.3 for windows, and I find that at startup when emacs finds (require 'jde) on my .emacs file, it crashes. I get an abort dialog where I can either abort, retry, or ignore. In any case emacs goes down. Is this a known problem? I ve tried

Re: XEmacs and Eclipse

2003-12-20 Thread Jason Rumney
Shashank [EMAIL PROTECTED] writes: But recently looks like it has lost momentum for supporting new features for development like testing, J2EE ? Since you are replying to me and Michael Coughlan, I can only assume this is in response to my earlier reply to Michael. If so, you have

Re: IPlanet serverside debugging?

2003-04-03 Thread Jason Rumney
[EMAIL PROTECTED] writes: We can't control how it starts, but we still might be able to connect to the running process. You should be able to control how iAS starts jvm's e.g. see http://docs.sun.com/source/816-7149-10/dgdebug.html#25712 Unfortunately those docs are for Sun ONE app

Re: IPlanet serverside debugging?

2003-04-02 Thread Jason Rumney
Galen Boyer [EMAIL PROTECTED] writes: Is this doable within the jdee? Which iPlanet? App Server and Web Server are completely different products. I think iAS uses a standard JVM, in which case using the remote debugging options would work. But I think iWS uses its own JVM (from the Kiva days)

Re: IPlanet serverside debugging?

2003-04-02 Thread Jason Rumney
Paul Kinnucan [EMAIL PROTECTED] writes: If you are trying to debug a program running in a vm embedded in another application, the container application must provide some means for you to tell it to start the embedded vm in debug server or client mode. Often there is somewhere to specify

Re: Where is the make command in Cygwin

2002-05-09 Thread Jason Rumney
Windows tools very well, which is not good for a program like make. -- Jason Rumney

Re: Fix for a problem in saving project file (2)...

2002-02-25 Thread Jason Rumney
= (if file (expand-file-name file dir) (if (not (jde-root-dir-p dir)) (jde-find-project-file (expand-file-name ../ dir)) -- Jason Rumney

Re: Needs help to get JDEE working...

2002-01-31 Thread Jason Rumney
. If commenting that out does not help, try commenting out sections until you find what is causing it to fail. -- Jason Rumney

Re: Whay is JDE/Xemacs startup so slow?

2002-01-28 Thread Jason Rumney
once. The total time to load JDE on my system is 4 seconds, although if the solaris box has the directory where JDE lives mounted via NFS, or is very old, 20 seconds might be reasonable. -- Jason Rumney

Re: Extending JDE using Java (WAS: Gosling interview)

2002-01-27 Thread Jason Rumney
to use the keyboard). -- Jason Rumney

Re: Help Needed Debugging Tomcat Servelets

2002-01-26 Thread Jason Rumney
to make sure tomcat is starting on that socket, and the proper order to run the debugging. Hopefully the above will help. -- Jason Rumney

Re: Help Needed Debugging Tomcat Servelets

2002-01-26 Thread Jason Rumney
Heather Marie Buch [EMAIL PROTECTED] writes: BTW - At no point to I get the step into or step over choices. Shouldn't they be available at some point after I attach the process? They are available once Tomcat is stopped (ie a breakpoint is hit). -- Jason Rumney