Function: nnheader-report

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

Signature

(nnheader-report BACKEND &rest ARGS)

Documentation

Report an error from the BACKEND.

The first string in ARGS can be a format string.

Source Code

;; Defined in /usr/src/emacs/lisp/gnus/nnheader.el.gz
(defun nnheader-report (backend &rest args)
  "Report an error from the BACKEND.
The first string in ARGS can be a format string."
  (set (intern (format "%s-status-string" backend))
       (if (< (length args) 2)
	   (car args)
	 (apply #'format args)))
  nil)