Re: jdedebug-- command line interface?

2001-02-23 Thread Aaron Brashears
On Fri, Feb 23, 2001 at 03:48:23PM -0800, Manish Khettry wrote: > I have succesfully setup jdedebug and hit the first breakpoint :) Good for you! Better than I've managed in the past, but I've been using linux/xemacs which has known problems with the debugger. > I was wondering if there was a bu

jdedebug-- command line interface?

2001-02-23 Thread Manish Khettry
I have succesfully setup jdedebug and hit the first breakpoint :) I was wondering if there was a buffer where I could interactively give commands to the debugger; i.e step or next and other simple commands like this. Doing it from the menubar is real pain and I just searched through all the buff

Re: jde-stack.el 1.0.1

2001-02-23 Thread Kevin A. Burton
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 Paul Kinnucan <[EMAIL PROTECTED]> writes: > At 09:25 PM 2/22/01 -0800, Kevin A. Burton wrote: > >The following message is a courtesy copy of an article > >that has been posted to gnu.emacs.sources as well. > > > >-BEGIN PGP SIGNED MESSAGE- >

Re: help with jde-import...

2001-02-23 Thread Sandip Chitale
Actually the compiled .class file (constant pool) is the best place to find out which classes are actually imported. Thus parsing the .class file(s) (post a successful compile) a tool could easily come up with an expanded (i.e. no .* imports) and only necessary imports list and replace the imports

Re: jde-stack.el 1.0.1

2001-02-23 Thread Sam Steingold
> * In message <[EMAIL PROTECTED]> > * On the subject of "Re: jde-stack.el 1.0.1" > * Sent on Fri, 23 Feb 2001 12:04:46 -0500 > * Honorable Paul Kinnucan <[EMAIL PROTECTED]> writes: > > >About a month ago I posted my take on jde-stack.el. > >It is about half as small as your version since I re-use

RE: font-lock-add-keywords issue

2001-02-23 Thread Schewe, Jon (MN65)
There are two ways to get it work, with FSF Emacs you use font-lock-add-keywords, or so I'm told. With XEmacs this works rather well: (add-to-list 'java-font-lock-keywords-3 '("\\<\\(FIX\\)" 1 font-lock-warning-face t)) This is at the top level in my .emacs.

Re: jde-stack.el 1.0.1

2001-02-23 Thread Paul Kinnucan
At 09:25 PM 2/22/01 -0800, Kevin A. Burton wrote: >The following message is a courtesy copy of an article >that has been posted to gnu.emacs.sources as well. > >-BEGIN PGP SIGNED MESSAGE- >Hash: SHA1 > > >I found this a while back. It didn't work correctly and the author noted this >in hi

Re: jde-stack.el 1.0.1

2001-02-23 Thread Paul Kinnucan
At 10:54 AM 2/23/01 -0500, Sam Steingold wrote: >> * In message <[EMAIL PROTECTED]> >> * On the subject of "jde-stack.el 1.0.1" >> * Sent on Fri, 23 Feb 2001 05:38:55 GMT >> * Honorable [EMAIL PROTECTED] (Kevin A. Burton) writes: >> >> I found this a while back. It didn't work correctly and the a

Re: jde-stack.el 1.0.1

2001-02-23 Thread Sam Steingold
> * In message <[EMAIL PROTECTED]> > * On the subject of "jde-stack.el 1.0.1" > * Sent on Fri, 23 Feb 2001 05:38:55 GMT > * Honorable [EMAIL PROTECTED] (Kevin A. Burton) writes: > > I found this a while back. It didn't work correctly and the author > noted this in his comments. I took the libert

Re: font-lock-add-keywords issue

2001-02-23 Thread Tim MacEachern
As always, as soon as you send something off to a mailing list with thousands of readers, you find a cleaner way of doing it... ;; New jde installation ;; Set loadpath to include jde (add-to-list 'load-path (expand-file-name "/usr/local/lib/xemacs/xemacs-packages/lisp/jde/lisp")) ;; Create a fon

Re: font-lock-add-keywords issue

2001-02-23 Thread Tim MacEachern
Argh! This thread has been bugging me as I couldn't get a similar thing to work in my environment -- Xemacs 21.1.12 on SunOS 5.6 with a standard tarball package download. To begin with, there is no function "font-lock-add-keywords" defined. The following is my hack, which works in my environmen

Bufname error in html-helper-mode

2001-02-23 Thread Gian Uberto Lauri
My apologies to everybody! (wears the appropriate cone hat sitting in a corner) The package uploaded to http://www.gest.unipd.it/~saint site was broken. The source code had the "Bufname" symbol slipped in (the correct spelling is bufname) and there was still the spinning prop that

AW: jde-stack.el 1.0.1

2001-02-23 Thread klaus . berndl
Hello, this is a little bit offtopic, but i must make some words to the attached fm.el: IMHO there is no need for fm.el, because we have already with next-error, previous-error, compilation-goto-error etc. all necessary and these functions have the great advantage that i´m not needed to be in th

Re: jde-stack.el 1.0.1

2001-02-23 Thread Andreas Wieweg
Oops forgot. I also use the following: (add-hook 'jde-entering-java-buffer-hook 'my-jde-stack-hook) (defun my-jde-stack-hook() (save-excursion (fm-unhighlight 1))) * Hi Thanks for a nice package. I modified it a bit to work better

Re: jde-stack.el 1.0.1

2001-02-23 Thread Andreas Wieweg
Hi Thanks for a nice package. I modified it a bit to work better for me, maybe you are interested ? (Warning I'm not very experienced with lisp) Change 1: I modified jde-stack-classname-regexp from: "[a-z.]+[A-Z][a-zA-Z0-9]+" to: "[a-z.]*[A-Z][a-zA-Z0-9_]+" Why: Classnames with undersco

Re: jde-stack.el 1.0.1

2001-02-23 Thread Kevin A. Burton
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 "Richard den Adel" <[EMAIL PROTECTED]> writes: > Great package Kevin! > > I have some questions : > - Is it possible to set a java-source path to search for the java-files from > the stacktrace in the comint buffer? That is what this package does.