I forgot about these 2 functions.

Sorry for inconvenience.

bob

(defun jde-jalopy-make-arg (more-args)
  "Constructs the java jalopy command as: jde-jalopy + options + buffer file name."
  (setq jde-tmp-jalopy-options (split-string (jde-jalopy-get-options)))
  (setq jde-options)
  (while jde-tmp-jalopy-options
    (setq jde-options (cons (car jde-tmp-jalopy-options) jde-options))
    (setq jde-tmp-jalopy-options (cdr jde-tmp-jalopy-options))
    )
  (setq tmp-list
 (append
  (list
   (car (split-string (jde-jalopy-get-classpath)))
   (car (cdr (split-string (jde-jalopy-get-classpath))))

   (if (not (string= more-args "")) (concat more-args))

   jde-jalopy-option-class
   )
  (reverse jde-options)
  )
 )
  (setq jde-jalopy-arg-list)
  (while tmp-list
    (if (car tmp-list)
 (if (not (string= (car tmp-list) ""))
     (setq jde-jalopy-arg-list (cons (car tmp-list) jde-jalopy-arg-list))))
    (setq tmp-list (cdr tmp-list))
    )
  (reverse jde-jalopy-arg-list)
  )

(defun jde-jalopy-trim(value)
  "Trim leading and trailing whitespace."
  (if (string-match "\\`[ \t\n]+" value)
      (setq value (substring value (match-end 0))))
  (if (string-match "[ \t\n]+\\'" value)
      (setq value (substring value 0 (match-beginning 0))))
  )



[EMAIL PROTECTED] wrote:

> Hy, when i try to used jde-jalopy-buffer,
> i have this error:
>  "let: Symbol's function definition is void: jde-jalopy-make-arg"
>
> in fact i'm looking for this function in jde-jalopy.el and it apperas it doesn't
> exist!
> any idea ?
>
> Thx
> Tof


Reply via email to