Function: gnus-group-select-group-ephemerally
gnus-group-select-group-ephemerally is an interactive and
byte-compiled function defined in gnus-group.el.gz.
Signature
(gnus-group-select-group-ephemerally)
Documentation
Select the current group without doing any processing whatsoever.
You will actually be entered into a group that's a copy of the current group; no changes you make while in this group will be permanent.
Key Bindings
Source Code
;; Defined in /usr/src/emacs/lisp/gnus/gnus-group.el.gz
(defun gnus-group-select-group-ephemerally ()
"Select the current group without doing any processing whatsoever.
You will actually be entered into a group that's a copy of
the current group; no changes you make while in this group will
be permanent."
(interactive nil gnus-group-mode)
(require 'gnus-score)
(let* (gnus-visual
gnus-score-find-score-files-function gnus-apply-kill-hook
gnus-summary-expunge-below gnus-show-threads gnus-suppress-duplicates
gnus-summary-mode-hook gnus-select-group-hook
(group (gnus-group-group-name))
(method (gnus-find-method-for-group group)))
(gnus-group-read-ephemeral-group
(gnus-group-prefixed-name group method) method)))