Function: gnus-browse-exit
gnus-browse-exit is an interactive and byte-compiled function defined
in gnus-srvr.el.gz.
Signature
(gnus-browse-exit)
Documentation
Quit browsing and return to the group buffer.
Key Bindings
Source Code
;; Defined in /usr/src/emacs/lisp/gnus/gnus-srvr.el.gz
(defun gnus-browse-exit ()
"Quit browsing and return to the group buffer."
(interactive nil gnus-browse-mode)
(when (derived-mode-p 'gnus-browse-mode)
(gnus-kill-buffer (current-buffer)))
;; Insert the newly subscribed groups in the group buffer.
(with-current-buffer gnus-group-buffer
(gnus-group-list-groups nil))
(if gnus-browse-return-buffer
(gnus-configure-windows 'server 'force)
(gnus-configure-windows 'group 'force)))