Function: gnus-group-read-only-p

gnus-group-read-only-p is a byte-compiled function defined in gnus.el.gz.

Signature

(gnus-group-read-only-p &optional GROUP)

Documentation

Check whether GROUP supports editing or not.

If GROUP is nil, gnus-newsgroup-name will be checked instead. Note that that variable is buffer-local to the summary buffers.

Source Code

;; Defined in /usr/src/emacs/lisp/gnus/gnus.el.gz
(defun gnus-group-read-only-p (&optional group)
  "Check whether GROUP supports editing or not.
If GROUP is nil, `gnus-newsgroup-name' will be checked instead.  Note
that that variable is buffer-local to the summary buffers."
  (let ((group (or group gnus-newsgroup-name)))
    (not (gnus-check-backend-function 'request-replace-article group))))