diff options
| author | Richard M. Stallman | 1993-06-22 05:55:22 +0000 |
|---|---|---|
| committer | Richard M. Stallman | 1993-06-22 05:55:22 +0000 |
| commit | 3bf526cfc6ddd82843a2a8785ef6de0a1090e9aa (patch) | |
| tree | 2a7c58b9d5161232cca8a43656a1f33b29e6baa9 | |
| parent | 4348b379b157112a29846182a3e61f22947bacb1 (diff) | |
| download | emacs-3bf526cfc6ddd82843a2a8785ef6de0a1090e9aa.tar.gz emacs-3bf526cfc6ddd82843a2a8785ef6de0a1090e9aa.zip | |
Add autoloads for rmailsort commands.
(rmail-mode-map): Add bindings for those commands.
| -rw-r--r-- | lisp/mail/rmail.el | 32 |
1 files changed, 32 insertions, 0 deletions
diff --git a/lisp/mail/rmail.el b/lisp/mail/rmail.el index 47084f34399..77aac751067 100644 --- a/lisp/mail/rmail.el +++ b/lisp/mail/rmail.el | |||
| @@ -344,6 +344,12 @@ Note: it means the file has no messages in it.\n\^_"))) | |||
| 344 | (define-key rmail-mode-map " " 'scroll-up) | 344 | (define-key rmail-mode-map " " 'scroll-up) |
| 345 | (define-key rmail-mode-map "\177" 'scroll-down) | 345 | (define-key rmail-mode-map "\177" 'scroll-down) |
| 346 | (define-key rmail-mode-map "?" 'describe-mode) | 346 | (define-key rmail-mode-map "?" 'describe-mode) |
| 347 | (define-key rmail-mode-map "\C-c\C-s\C-d" 'rmail-sort-by-date) | ||
| 348 | (define-key rmail-mode-map "\C-c\C-s\C-s" 'rmail-sort-by-subject) | ||
| 349 | (define-key rmail-mode-map "\C-c\C-s\C-a" 'rmail-sort-by-author) | ||
| 350 | (define-key rmail-mode-map "\C-c\C-s\C-r" 'rmail-sort-by-recipient) | ||
| 351 | (define-key rmail-mode-map "\C-c\C-s\C-c" 'rmail-sort-by-correspondent) | ||
| 352 | (define-key rmail-mode-map "\C-c\C-s\C-l" 'rmail-sort-by-lines) | ||
| 347 | ) | 353 | ) |
| 348 | 354 | ||
| 349 | (define-key rmail-mode-map [menu-bar] (make-sparse-keymap)) | 355 | (define-key rmail-mode-map [menu-bar] (make-sparse-keymap)) |
| @@ -1974,6 +1980,32 @@ With prefix argument N moves backward N messages with this label." | |||
| 1974 | (autoload 'rmail-edit-current-message "rmailedit" | 1980 | (autoload 'rmail-edit-current-message "rmailedit" |
| 1975 | "Edit the contents of the current message" | 1981 | "Edit the contents of the current message" |
| 1976 | t) | 1982 | t) |
| 1983 | |||
| 1984 | ;;;; *** Rmail Sorting *** | ||
| 1985 | |||
| 1986 | (autoload 'rmail-sort-by-date "rmailsort" | ||
| 1987 | "Sort messages of current Rmail file by date. | ||
| 1988 | If prefix argument REVERSE is non-nil, sort them in reverse order." t) | ||
| 1989 | |||
| 1990 | (autoload 'rmail-sort-by-subject "rmailsort" | ||
| 1991 | "Sort messages of current Rmail file by subject. | ||
| 1992 | If prefix argument REVERSE is non-nil, sort them in reverse order." t) | ||
| 1993 | |||
| 1994 | (autoload 'rmail-sort-by-author "rmailsort" | ||
| 1995 | "Sort messages of current Rmail file by author. | ||
| 1996 | If prefix argument REVERSE is non-nil, sort them in reverse order." t) | ||
| 1997 | |||
| 1998 | (autoload 'rmail-sort-by-recipient "rmailsort" | ||
| 1999 | "Sort messages of current Rmail file by recipient. | ||
| 2000 | If prefix argument REVERSE is non-nil, sort them in reverse order." t) | ||
| 2001 | |||
| 2002 | (autoload 'rmail-sort-by-correspondent "rmailsort" | ||
| 2003 | "Sort messages of current Rmail file by other correspondent. | ||
| 2004 | If prefix argument REVERSE is non-nil, sort them in reverse order." t) | ||
| 2005 | |||
| 2006 | (autoload 'rmail-sort-by-lines "rmailsort" | ||
| 2007 | "Sort messages of current Rmail file by number of lines. | ||
| 2008 | If prefix argument REVERSE is non-nil, sort them in reverse order." t) | ||
| 1977 | 2009 | ||
| 1978 | ;;;; *** Rmail Summary Mode *** | 2010 | ;;;; *** Rmail Summary Mode *** |
| 1979 | 2011 | ||