Function: gnus-browse-delete-group

gnus-browse-delete-group is an interactive and byte-compiled function defined in gnus-srvr.el.gz.

Signature

(gnus-browse-delete-group GROUP FORCE)

Documentation

Delete the current group. Only meaningful with editable groups.

If FORCE (the prefix) is non-nil, all the articles in the group will be deleted. This is "deleted" as in "removed forever from the face of the Earth". There is no undo. The user will be prompted before doing the deletion.

Key Bindings

Source Code

;; Defined in /usr/src/emacs/lisp/gnus/gnus-srvr.el.gz
(defun gnus-browse-delete-group (group force)
  "Delete the current group.  Only meaningful with editable groups.
If FORCE (the prefix) is non-nil, all the articles in the group will
be deleted.  This is \"deleted\" as in \"removed forever from the face
of the Earth\".  There is no undo.  The user will be prompted before
doing the deletion."
  (interactive (list (gnus-browse-group-name) current-prefix-arg)
	       gnus-browse-mode)
  (gnus-group-delete-group group force))