]> git.eshelyaron.com Git - emacs.git/commitdiff
(rmail-mode-map): Key binding for rmail-sort-by-keywords.
authorKarl Heuer <kwzh@gnu.org>
Thu, 7 Apr 1994 03:29:18 +0000 (03:29 +0000)
committerKarl Heuer <kwzh@gnu.org>
Thu, 7 Apr 1994 03:29:18 +0000 (03:29 +0000)
lisp/mail/rmail.el

index c72fdf9a57a59e8e2ee166a3bca8254cae1590bc..503d94b5fc46580db442b92fb0f163e9af70dbd6 100644 (file)
@@ -375,6 +375,7 @@ Note:    it means the file has no messages in it.\n\^_")))
   (define-key rmail-mode-map "\C-c\C-s\C-r" 'rmail-sort-by-recipient)
   (define-key rmail-mode-map "\C-c\C-s\C-c" 'rmail-sort-by-correspondent)
   (define-key rmail-mode-map "\C-c\C-s\C-l" 'rmail-sort-by-lines)
+  (define-key rmail-mode-map "\C-c\C-s\C-k" 'rmail-sort-by-keywords)
   )
 \f
 (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)
 (autoload 'rmail-sort-by-lines "rmailsort"
   "Sort messages of current Rmail file by number of lines.
 If prefix argument REVERSE is non-nil, sort them in reverse order." t)
+
+(autoload 'rmail-sort-by-keywords "rmailsort"
+  "Sort messages of current Rmail file by labels.
+If prefix argument REVERSE is non-nil, sort them in reverse order.
+KEYWORDS is a comma-separated list of labels." t)
 \f
 ;;;; *** Rmail Summary Mode ***