summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorCarl Worth <cworth@cworth.org>2010-04-23 17:27:14 -0700
committerCarl Worth <cworth@cworth.org>2010-04-23 17:27:14 -0700
commit1291d1dcb17280d8a98ebd4197b4524ef89cf771 (patch)
tree1f1d5a674c7cf382e602bca18cee003fd9b1c094
parente6bc99f31ffc644fde059ab6fb31b3289c13c8f1 (diff)
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.)
-rw-r--r--emacs/notmuch-show.el10
1 files changed, 5 insertions, 5 deletions
diff --git a/emacs/notmuch-show.el b/emacs/notmuch-show.el
index 95874bb..203528f 100644
--- a/emacs/notmuch-show.el
+++ b/emacs/notmuch-show.el
@@ -526,7 +526,7 @@ function is used. "
(define-key map "p" 'notmuch-show-previous-open-message)
(define-key map (kbd "DEL") 'notmuch-show-rewind)
(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)
map)
"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))))
(force-window-update))
-(defun notmuch-show-toggle-all ()
- "Change the visibility all of the messages in the current
-thread. By default make all of the messages visible. With a
-prefix argument, make them all not visible."
+(defun notmuch-show-open-or-close-all ()
+ "Set the visibility all of the messages in the current thread.
+By default make all of the messages visible. With a prefix
+argument, hide all of the messages."
(interactive)
(save-excursion
(goto-char (point-min))