unofficial mirror of bug-gnu-emacs@gnu.org 
 help / color / mirror / code / Atom feed
* bug#9802: 23.3; missing key binding for rmail-summary-by-senders in Rmail [PATCH]
@ 2011-10-20  3:04 Mark Lillibridge
  2011-10-28  2:50 ` Stefan Monnier
  0 siblings, 1 reply; 2+ messages in thread
From: Mark Lillibridge @ 2011-10-20  3:04 UTC (permalink / raw)
  To: 9802


Compare the key bindings in Rmail summary mode:

C-M-f		rmail-summary-by-senders
C-M-h		rmail-summary
C-M-l		rmail-summary-by-labels
C-M-n		rmail-summary-next-labeled-message
C-M-p		rmail-summary-previous-labeled-message
C-M-r		rmail-summary-by-recipients
C-M-s		rmail-summary-by-regexp
C-M-t		rmail-summary-by-topic

to those of Rmail mode:

C-M-h		rmail-summary
C-M-l		rmail-summary-by-labels
C-M-n		rmail-next-labeled-message
C-M-p		rmail-previous-labeled-message
C-M-r		rmail-summary-by-recipients
C-M-s		rmail-summary-by-regexp
C-M-t		rmail-summary-by-topic

You'll notice that a binding for C-M-f to rmail-summary-by-senders
(added recently) is missing from Rmail mode.

(C-M-f is normally bound to forward-sexp, which is not very useful in
Rmail mode.)


A simple patch to fix this is:

ts-rhel5 [128]% ( setenv LC_ALL C ; setenv TZ UTC0 ; diff -Naur original-rmail.el rmail.el )
--- original-rmail.el   2011-02-23 23:23:08.000000000 +0000
+++ rmail.el    2011-10-20 02:51:29.845136000 +0000
@@ -1018,6 +1018,7 @@
     (define-key map "\e\C-l" 'rmail-summary-by-labels)
     (define-key map "\e\C-r" 'rmail-summary-by-recipients)
     (define-key map "\e\C-s" 'rmail-summary-by-regexp)
+    (define-key map "\e\C-f" 'rmail-summary-by-senders)
     (define-key map "\e\C-t" 'rmail-summary-by-topic)
     (define-key map "m"      'rmail-mail)
     (define-key map "\em"    'rmail-retry-failure)

- Mark
PS, rmail-summary-by-senders does not appear to be documented in the
documentation for rmail-summary-mode or rmail-mode; you may want to fix
that as well.





^ permalink raw reply	[flat|nested] 2+ messages in thread

* bug#9802: 23.3; missing key binding for rmail-summary-by-senders in Rmail [PATCH]
  2011-10-20  3:04 bug#9802: 23.3; missing key binding for rmail-summary-by-senders in Rmail [PATCH] Mark Lillibridge
@ 2011-10-28  2:50 ` Stefan Monnier
  0 siblings, 0 replies; 2+ messages in thread
From: Stefan Monnier @ 2011-10-28  2:50 UTC (permalink / raw)
  To: mark.lillibridge; +Cc: 9802-done

> You'll notice that a binding for C-M-f to rmail-summary-by-senders
> (added recently) is missing from Rmail mode.
[...]
> A simple patch to fix this is:

Thanks, installed,


        Stefan





^ permalink raw reply	[flat|nested] 2+ messages in thread

end of thread, other threads:[~2011-10-28  2:50 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2011-10-20  3:04 bug#9802: 23.3; missing key binding for rmail-summary-by-senders in Rmail [PATCH] Mark Lillibridge
2011-10-28  2:50 ` Stefan Monnier

Code repositories for project(s) associated with this public inbox

	https://git.savannah.gnu.org/cgit/emacs.git

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).