Function: gnus-summary-wake-up-the-dead

gnus-summary-wake-up-the-dead is an interactive and byte-compiled function defined in gnus-sum.el.gz.

Signature

(gnus-summary-wake-up-the-dead &rest _)

Documentation

Wake up the dead summary buffer.

Key Bindings

Source Code

;; Defined in /usr/src/emacs/lisp/gnus/gnus-sum.el.gz
(defun gnus-summary-wake-up-the-dead (&rest _)
  "Wake up the dead summary buffer."
  (interactive nil gnus-summary-mode)
  (gnus-dead-summary-mode -1)
  (let ((name (buffer-name)))
    (when (string-match "Dead " name)
      (rename-buffer
       (concat (substring name 0 (match-beginning 0))
	       (substring name (match-end 0)))
       t)))
  (gnus-message 3 "This dead summary is now alive again"))