Function: gnus-request-expunge-group
gnus-request-expunge-group is a byte-compiled function defined in
gnus-int.el.gz.
Signature
(gnus-request-expunge-group GROUP COMMAND-METHOD)
Documentation
Expunge GROUP, which is removing articles that have been marked as deleted.
Source Code
;; Defined in /usr/src/emacs/lisp/gnus/gnus-int.el.gz
(defun gnus-request-expunge-group (group command-method)
"Expunge GROUP, which is removing articles that have been marked as deleted."
(let ((gnus-command-method
(if (stringp command-method)
(gnus-server-to-method command-method)
command-method)))
(funcall (gnus-get-function gnus-command-method 'request-expunge-group)
(gnus-group-real-name group)
(nth 1 gnus-command-method))))