Function: gnus-asynchronous-p

gnus-asynchronous-p is a byte-compiled function defined in gnus-int.el.gz.

Signature

(gnus-asynchronous-p COMMAND-METHOD)

Source Code

;; Defined in /usr/src/emacs/lisp/gnus/gnus-int.el.gz
(defun gnus-asynchronous-p (command-method)
  (let ((func (gnus-get-function command-method 'asynchronous-p t)))
    (when (fboundp func)
      (let ((gnus-command-method command-method))
        (funcall func)))))