Function: gnus-request-group-scan

gnus-request-group-scan is a byte-compiled function defined in gnus-int.el.gz.

Signature

(gnus-request-group-scan GROUP INFO)

Documentation

Request that GROUP get a complete rescan.

Source Code

;; Defined in /usr/src/emacs/lisp/gnus/gnus-int.el.gz
(defun gnus-request-group-scan (group info)
  "Request that GROUP get a complete rescan."
  (let ((gnus-command-method (gnus-find-method-for-group group))
	(func 'request-group-scan))
    (when (gnus-check-backend-function func group)
      (funcall (gnus-get-function gnus-command-method func)
	       (gnus-group-real-name group) (nth 1 gnus-command-method) info))))