diff options
| -rw-r--r-- | lisp/mail/rmail.el | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/lisp/mail/rmail.el b/lisp/mail/rmail.el index c72fdf9a57a..503d94b5fc4 100644 --- a/lisp/mail/rmail.el +++ b/lisp/mail/rmail.el | |||
| @@ -375,6 +375,7 @@ Note: it means the file has no messages in it.\n\^_"))) | |||
| 375 | (define-key rmail-mode-map "\C-c\C-s\C-r" 'rmail-sort-by-recipient) | 375 | (define-key rmail-mode-map "\C-c\C-s\C-r" 'rmail-sort-by-recipient) |
| 376 | (define-key rmail-mode-map "\C-c\C-s\C-c" 'rmail-sort-by-correspondent) | 376 | (define-key rmail-mode-map "\C-c\C-s\C-c" 'rmail-sort-by-correspondent) |
| 377 | (define-key rmail-mode-map "\C-c\C-s\C-l" 'rmail-sort-by-lines) | 377 | (define-key rmail-mode-map "\C-c\C-s\C-l" 'rmail-sort-by-lines) |
| 378 | (define-key rmail-mode-map "\C-c\C-s\C-k" 'rmail-sort-by-keywords) | ||
| 378 | ) | 379 | ) |
| 379 | 380 | ||
| 380 | (define-key rmail-mode-map [menu-bar] (make-sparse-keymap)) | 381 | (define-key rmail-mode-map [menu-bar] (make-sparse-keymap)) |
| @@ -2167,6 +2168,11 @@ If prefix argument REVERSE is non-nil, sort them in reverse order." t) | |||
| 2167 | (autoload 'rmail-sort-by-lines "rmailsort" | 2168 | (autoload 'rmail-sort-by-lines "rmailsort" |
| 2168 | "Sort messages of current Rmail file by number of lines. | 2169 | "Sort messages of current Rmail file by number of lines. |
| 2169 | If prefix argument REVERSE is non-nil, sort them in reverse order." t) | 2170 | If prefix argument REVERSE is non-nil, sort them in reverse order." t) |
| 2171 | |||
| 2172 | (autoload 'rmail-sort-by-keywords "rmailsort" | ||
| 2173 | "Sort messages of current Rmail file by labels. | ||
| 2174 | If prefix argument REVERSE is non-nil, sort them in reverse order. | ||
| 2175 | KEYWORDS is a comma-separated list of labels." t) | ||
| 2170 | 2176 | ||
| 2171 | ;;;; *** Rmail Summary Mode *** | 2177 | ;;;; *** Rmail Summary Mode *** |
| 2172 | 2178 | ||