Function: gnus-group-list-killed
gnus-group-list-killed is an interactive and byte-compiled function
defined in gnus-group.el.gz.
Signature
(gnus-group-list-killed &optional ARG)
Documentation
List all killed newsgroups in the group buffer.
If ARG is non-nil, list ALL killed groups known to Gnus. This may entail asking the server for the groups.
Key Bindings
Source Code
;; Defined in /usr/src/emacs/lisp/gnus/gnus-group.el.gz
;; Redefine this to list ALL killed groups if prefix arg used.
;; Rewritten by engstrom@src.honeywell.com (Eric Engstrom).
(defun gnus-group-list-killed (&optional arg)
"List all killed newsgroups in the group buffer.
If ARG is non-nil, list ALL killed groups known to Gnus. This may
entail asking the server for the groups."
(interactive "P" gnus-group-mode)
;; Find all possible killed newsgroups if arg.
(when arg
(gnus-get-killed-groups))
(if (not gnus-killed-list)
(gnus-message 6 "No killed groups")
(let (gnus-group-list-mode)
(funcall gnus-group-prepare-function
gnus-level-killed t gnus-level-killed))
(goto-char (point-min)))
(gnus-group-position-point))