Function: nnheader-get-report-string

nnheader-get-report-string is a byte-compiled function defined in nnheader.el.gz.

Signature

(nnheader-get-report-string BACKEND)

Documentation

Get the most recent report from BACKEND.

Source Code

;; Defined in /usr/src/emacs/lisp/gnus/nnheader.el.gz
(defun nnheader-get-report-string (backend)
  "Get the most recent report from BACKEND."
  (condition-case ()
      (format "%s" (symbol-value (intern (format "%s-status-string"
						 backend))))
    (error "")))