Re: occasional error compiling due to jde-xref-compile-hook

2003-11-06 Thread Raul Acevedo
Andrew Hyatt wrote:

  Thanks, this looks like a bug.  For the time being, substitute with
  this line:
  
(add-hook 'jde-compile-finish-hook 'jde-xref-update-caller-table)

That isn't defined either and eventually gives me the same undefined error.

[1462] /usr/share/emacs/site-lisp/jde/lisp]# grep jde-xref-update-caller-table *.el
jde-xref.el:  (add-hook 'jde-compile-finish-hook 'jde-xref-update-caller-table)

Raul


Re: occasional error compiling due to jde-xref-compile-hook

2003-11-06 Thread Andrew Hyatt

In that case, I better take it out.  Sorry for the confusion.  

Raul Acevedo [EMAIL PROTECTED] writes:

 Andrew Hyatt wrote:

   Thanks, this looks like a bug.  For the time being, substitute with
   this line:
   
 (add-hook 'jde-compile-finish-hook 'jde-xref-update-caller-table)

 That isn't defined either and eventually gives me the same undefined error.

 [1462] /usr/share/emacs/site-lisp/jde/lisp]# grep jde-xref-update-caller-table *.el
 jde-xref.el:  (add-hook 'jde-compile-finish-hook 'jde-xref-update-caller-table)

 Raul



Re: occasional error compiling due to jde-xref-compile-hook

2003-11-05 Thread Andrew Hyatt

Thanks, this looks like a bug.  For the time being, substitute with
this line:

  (add-hook 'jde-compile-finish-hook 'jde-xref-update-caller-table)

Raul Acevedo [EMAIL PROTECTED] writes:

 I occasionally get the following error when I compile a Java file:
 error in process filter: Symbol's function definition is void:
 jde-xref-compile-hook.  If I grep for jde-xref-compile-hook in the JDE
 sources, I find only one reference in jde-xref.el:

 (add-hook 'jde-compile-finish-hook 'jde-xref-compile-hook)

 But I don't see the definition of the function jde-xref-compile-hook.
 What's going on? 

 Raul