I have created a patch to jde-javadoc.el (jde-2.2.4.1) to add a custom
jde-javadoc-javadoc-command variable that is used when the
jde-javadoc-make function is invoked.  This is useful in case the
javadoc executable is not on your PATH.

Regards.

Jason Stell



*** jde-javadoc.el_orig Tue Sep 19 00:57:54 2000
--- jde-javadoc.el Thu Sep 21 08:14:02 2000
***************
*** 57,62 ****
--- 57,69 ----
    :group 'jde
    :prefix "jde-javadoc-")

+
+ (defcustom jde-javadoc-javadoc-command "javadoc"
+   "*Path to the javadoc executable."
+   :group 'jde-javadoc
+   :type 'string)
+
+
  ;; IMPORTANT: This function must be defined before the following
defcustoms
  ;; because it is used in their :set clause.
  (defun jde-javadoc-define-template (sym val)
***************
*** 781,787 ****
    (if (not (directory-files jde-javadoc-gen-destination-directory nil
nil nil))
        (make-directory jde-javadoc-gen-destination-directory))
    (let ((arguments
!   (format "javadoc -d %s %s"
     jde-javadoc-gen-destination-directory
     (car jde-javadoc-gen-detail-switch))))

--- 788,794 ----
    (if (not (directory-files jde-javadoc-gen-destination-directory nil
nil nil))
        (make-directory jde-javadoc-gen-destination-directory))
    (let ((arguments
!   (format jde-javadoc-javadoc-command " -d %s %s"
     jde-javadoc-gen-destination-directory
     (car jde-javadoc-gen-detail-switch))))
begin:vcard 
n:Stell;Jason
tel;pager:800-724-3329 PIN 382-8028
tel;work:(703) 471-2529
x-mozilla-html:FALSE
adr:;;;;;;
version:2.1
email;internet:[EMAIL PROTECTED]
fn:Jason Stell
end:vcard

Reply via email to