diff options
author | Glenn Morris <rgm@gnu.org> | 2009-03-03 07:36:19 +0000 |
---|---|---|
committer | Glenn Morris <rgm@gnu.org> | 2009-03-03 07:36:19 +0000 |
commit | ac203e0177bcd99126c3b0b42d99401a2c4f7c3b (patch) | |
tree | aa8ab65ced1677290afe335d831d705b7655f6f7 /lisp/mail/rmailsum.el | |
parent | 21b6bf3b3a498dd913a9ec4a3ea3d4c1c0564d6d (diff) | |
download | emacs-ac203e0177bcd99126c3b0b42d99401a2c4f7c3b.tar.gz |
(rmail-summary-by-senders): Doc fix.
(rmail-summary-mode-map): Bind rmail-summary-by-senders to C-M-f.
Diffstat (limited to 'lisp/mail/rmailsum.el')
-rw-r--r-- | lisp/mail/rmailsum.el | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/lisp/mail/rmailsum.el b/lisp/mail/rmailsum.el index 0ae5ed804ef..37f97962efc 100644 --- a/lisp/mail/rmailsum.el +++ b/lisp/mail/rmailsum.el @@ -187,8 +187,8 @@ SUBJECT is a string of regexps separated by commas." ;;;###autoload (defun rmail-summary-by-senders (senders) - "Display a summary of all messages with the given SENDERS. -SENDERS is a string of names separated by commas." + "Display a summary of all messages whose \"From\" field matches SENDERS. +SENDERS is a string of regexps separated by commas." (interactive "sSenders to summarize by: ") (rmail-new-summary (concat "senders " senders) @@ -1017,6 +1017,8 @@ Search, the `unseen' attribute is restored.") (define-key rmail-summary-mode-map "\e\C-l" 'rmail-summary-by-labels) (define-key rmail-summary-mode-map "\e\C-r" 'rmail-summary-by-recipients) (define-key rmail-summary-mode-map "\e\C-s" 'rmail-summary-by-regexp) + ;; `f' for "from". + (define-key rmail-summary-mode-map "\e\C-f" 'rmail-summary-by-senders) (define-key rmail-summary-mode-map "\e\C-t" 'rmail-summary-by-topic) (define-key rmail-summary-mode-map "m" 'rmail-summary-mail) (define-key rmail-summary-mode-map "\M-m" 'rmail-summary-retry-failure) |