Function: gnus-mailing-list-mode
gnus-mailing-list-mode is an autoloaded, interactive and byte-compiled
function defined in gnus-ml.el.gz.
Signature
(gnus-mailing-list-mode &optional ARG)
Documentation
Minor mode for providing mailing-list commands.
C-c C-n a gnus-mailing-list-archive
C-c C-n h gnus-mailing-list-help
C-c C-n o gnus-mailing-list-owner
C-c C-n p gnus-mailing-list-post
C-c C-n s gnus-mailing-list-subscribe
C-c C-n u gnus-mailing-list-unsubscribe
This is a minor mode. If called interactively, toggle the
Gnus-Mailing-List mode mode. If the prefix argument is
positive, enable the mode, and if it is zero or negative, disable
the mode.
If called from Lisp, toggle the mode if ARG is toggle. Enable
the mode if ARG is nil, omitted, or is a positive number.
Disable the mode if ARG is a negative number.
To check whether the minor mode is enabled in the current buffer,
evaluate gnus-mailing-list-mode(var)/gnus-mailing-list-mode(fun).
The mode's hook is called both when the mode is enabled and when it is disabled.
Key Bindings
Source Code
;; Defined in /usr/src/emacs/lisp/gnus/gnus-ml.el.gz
;;;###autoload
(define-minor-mode gnus-mailing-list-mode
"Minor mode for providing mailing-list commands.
\\{gnus-mailing-list-mode-map}"
:lighter " Mailing-List"
:keymap gnus-mailing-list-mode-map
(cond
((not (derived-mode-p 'gnus-summary-mode))
(setq gnus-mailing-list-mode nil))
(gnus-mailing-list-mode
;; Set up the menu.
(when (gnus-visual-p 'mailing-list-menu 'menu)
(gnus-mailing-list-make-menu-bar)))))