emacs: Rename notmuch-show-toggle-all to notmuch-show-open-or-close-all

The function was named and documented incorrectly before, saying that
it would "change the visibility of all messages". Instead it only
opens the messages that are closed---it doesn't simultanesously close
the messages that are open. (Granted, nobody would *want* that
behavior I don't think, but the naming was confusing before.)
This commit is contained in:
Carl Worth 2010-04-23 17:27:14 -07:00
parent e6bc99f31f
commit 1291d1dcb1

View file

@ -526,7 +526,7 @@ function is used. "
(define-key map "p" 'notmuch-show-previous-open-message) (define-key map "p" 'notmuch-show-previous-open-message)
(define-key map (kbd "DEL") 'notmuch-show-rewind) (define-key map (kbd "DEL") 'notmuch-show-rewind)
(define-key map " " 'notmuch-show-advance-and-archive) (define-key map " " 'notmuch-show-advance-and-archive)
(define-key map (kbd "M-RET") 'notmuch-show-toggle-all) (define-key map (kbd "M-RET") 'notmuch-show-open-or-close-all)
(define-key map (kbd "RET") 'notmuch-show-toggle-message) (define-key map (kbd "RET") 'notmuch-show-toggle-message)
map) map)
"Keymap for \"notmuch show\" buffers.") "Keymap for \"notmuch show\" buffers.")
@ -907,10 +907,10 @@ to stdout or stderr will appear in the *Messages* buffer."
(not (plist-get props :message-visible)))) (not (plist-get props :message-visible))))
(force-window-update)) (force-window-update))
(defun notmuch-show-toggle-all () (defun notmuch-show-open-or-close-all ()
"Change the visibility all of the messages in the current "Set the visibility all of the messages in the current thread.
thread. By default make all of the messages visible. With a By default make all of the messages visible. With a prefix
prefix argument, make them all not visible." argument, hide all of the messages."
(interactive) (interactive)
(save-excursion (save-excursion
(goto-char (point-min)) (goto-char (point-min))