Function: gnus-dired-mode
gnus-dired-mode is an interactive and byte-compiled function defined
in gnus-dired.el.gz.
Signature
(gnus-dired-mode &optional ARG)
Documentation
Minor mode for intersections of gnus and dired.
This is a minor mode. If called interactively, toggle the Gnus-Dired
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-dired-mode(var)/gnus-dired-mode(fun).
The mode's hook is called both when the mode is enabled and when it is disabled.
C-c RET C-a gnus-dired-attach
C-c RET C-l gnus-dired-find-file-mailcap
C-c RET C-p gnus-dired-print
Key Bindings
Source Code
;; Defined in /usr/src/emacs/lisp/gnus/gnus-dired.el.gz
(define-minor-mode gnus-dired-mode
"Minor mode for intersections of gnus and dired.
\\{gnus-dired-mode-map}"
:keymap gnus-dired-mode-map
(unless (derived-mode-p 'dired-mode)
(setq gnus-dired-mode nil)))