Function: gnus-status-message

gnus-status-message is a byte-compiled function defined in gnus-int.el.gz.

Signature

(gnus-status-message COMMAND-METHOD)

Documentation

Return the status message from COMMAND-METHOD.

If COMMAND-METHOD is a string, it is interpreted as a group name. The method this group uses will be queried.

Source Code

;; Defined in /usr/src/emacs/lisp/gnus/gnus-int.el.gz
(defun gnus-status-message (command-method)
  "Return the status message from COMMAND-METHOD.
If COMMAND-METHOD is a string, it is interpreted as a group name.
The method this group uses will be queried."
  (let ((gnus-command-method
	 (if (stringp command-method)
	     (gnus-find-method-for-group command-method)
	   command-method)))
    (funcall (gnus-get-function gnus-command-method 'status-message)
	     (nth 1 gnus-command-method))))