Re: JDE Complete Menu

2003-01-10 Thread Ole Arndt
Jeba Bhaskaran <[EMAIL PROTECTED]> writes: > Hello Ole, > I copied your code to my init.el file and getting the > following error when trying to use the method ( called > by M-x jde-indent-complete): > > Signaling: (void-function mark-or-region-active) > (mark-or-region-active) > (if (mark-or

Re: wrong-number-of-arguments in jde-bug.el

2003-01-10 Thread jde
Well, I downgraded back the version of emacs that comes with Cygwin-1.13 and everything worked fine... so I'll go pester the cygwin team... On Fri, Jan 10, 2003 at 06:13:27PM +, [EMAIL PROTECTED] wrote: > Hi all, > > I've searched the list archives and don't see this exact error. There were >

Re: JDE Complete Menu

2003-01-10 Thread Jeba Bhaskaran
Hello Ole, I copied your code to my init.el file and getting the following error when trying to use the method ( called by M-x jde-indent-complete): Signaling: (void-function mark-or-region-active) (mark-or-region-active) (if (mark-or-region-active) (indent-region (mark) (point) nil) (if (sav

wrong-number-of-arguments in jde-bug.el

2003-01-10 Thread jde
Hi all, I've searched the list archives and don't see this exact error. There were others for (wrong-number-of-arguments...) but relating to different modules. Any help is greatly appreciated with this. I get the following error when loading jde... Debugger entered--Lisp error: (wrong-number-of-

Buffer Kill

2003-01-10 Thread Inger, Matthew
Title: Buffer Kill is there a way to turn off the buffer kill after compilation completion? I've tried customizing the jde-compile-finish-hook variable both with jde-set-variables and with custom-set-variables, but neither one works. It's annoying if i have split buffer windows, then try to

Re: Menus

2003-01-10 Thread Ole Arndt
"Inger, Matthew" <[EMAIL PROTECTED]> writes: > is there a way to re-assing the JDE->Build menu item to call > jde-ant-build rather than jde-make? Try M-x customize-variable RET jde-build-function RET Ole -- Ole Arndthttp://www.sugarshark.com

RE: Menus

2003-01-10 Thread Inger, Matthew
Title: Menus never mind.  i found it...   (jde-set-variables  '(jde-build-function (quote (jde-ant-build)))  )   -Original Message-From: Inger, Matthew [mailto:[EMAIL PROTECTED]]Sent: Friday, January 10, 2003 12:35 PMTo: '[EMAIL PROTECTED]'Subject: Menus is there a way to r

Menus

2003-01-10 Thread Inger, Matthew
Title: Menus is there a way to re-assing the JDE->Build menu item to call jde-ant-build rather than jde-make?

AW: Ant problem with JDE 2.3.2

2003-01-10 Thread Schmitt, Christian (ext.)
OK, this seems totally weird, but is working In file jde-ant.el in function jde-ant-build I renamed the local variable history to build-history and now everything works a-OK May be some internal XEmacs wizardry that keeps you from using a symbol called history?! Christian > -Ursprungl

Re: JDEbug and LinkedList

2003-01-10 Thread Javier S. Lopez
Troy Daniels <[EMAIL PROTECTED]> writes: > Hello, > > There appears to be a bug in JDEbug regarding circular references. I was > trying to look at a java.util.LinkedList. The implementation in my JDK uses a > class like the following: > > class LLNode { >Object element; >LLNode next; >

AspectJ compiler

2003-01-10 Thread Inger, Matthew
Title: AspectJ compiler I'm using the aspectj extension for jdee. The problem i'm having is that i don't always need to use the aspect compiler.  A majority of my classes that i work on don't need it, and the overhead of compiling everything is a waste of time. I'd like to keep jde-compile usi

JDEbug and LinkedList

2003-01-10 Thread Troy Daniels
Hello, There appears to be a bug in JDEbug regarding circular references. I was trying to look at a java.util.LinkedList. The implementation in my JDK uses a class like the following: class LLNode { Object element; LLNode next; LLNode previous; } where next and previous point to the ne

Re: JDE Complete Menu

2003-01-10 Thread Ole Arndt
Hi Jeba, Hi Paul, Paul Kinnucan <[EMAIL PROTECTED]> writes: > Jeba Bhaskaran writes: > > I am currently using dabbrev-completion to complete > > variable names in a Java buffer. How difficult would > > it be to add this functionality to the JDE Complete > > Menu function? For example, if ther