Function: ange-ftp-call-cont

ange-ftp-call-cont is a byte-compiled function defined in ange-ftp.el.gz.

Signature

(ange-ftp-call-cont CONT RESULT LINE)

Source Code

;; Defined in /usr/src/emacs/lisp/net/ange-ftp.el.gz
;; Call the function specified by CONT.  CONT can be either a function
;; or a list of a function and some args.  The first two parameters
;; passed to the function will be RESULT and LINE.  The remaining args
;; will be taken from CONT if a list was passed.

(defun ange-ftp-call-cont (cont result line)
  (when cont
    (if (and (listp cont)
	     (not (eq (car cont) 'lambda)))
	(apply (car cont) result line (cdr cont))
      (funcall cont result line))))