From unknown Sat Jun 21 10:41:54 2025 X-Loop: help-debbugs@gnu.org Subject: bug#9802: 23.3; missing key binding for rmail-summary-by-senders in Rmail [PATCH] Resent-From: Mark Lillibridge Original-Sender: debbugs-submit-bounces@debbugs.gnu.org Resent-CC: bug-gnu-emacs@gnu.org Resent-Date: Thu, 20 Oct 2011 03:07:02 +0000 Resent-Message-ID: Resent-Sender: help-debbugs@gnu.org X-GNU-PR-Message: report 9802 X-GNU-PR-Package: emacs X-GNU-PR-Keywords: patch To: 9802@debbugs.gnu.org X-Debbugs-Original-To: bug-gnu-emacs@gnu.org Reply-To: mark.lillibridge@hp.com Received: via spool by submit@debbugs.gnu.org id=B.131907999614799 (code B ref -1); Thu, 20 Oct 2011 03:07:02 +0000 Received: (at submit) by debbugs.gnu.org; 20 Oct 2011 03:06:36 +0000 Received: from localhost ([127.0.0.1] helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.69) (envelope-from ) id 1RGixo-0003qe-5U for submit@debbugs.gnu.org; Wed, 19 Oct 2011 23:06:36 -0400 Received: from eggs.gnu.org ([140.186.70.92]) by debbugs.gnu.org with esmtp (Exim 4.69) (envelope-from ) id 1RGixm-0003qT-5O for submit@debbugs.gnu.org; Wed, 19 Oct 2011 23:06:35 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1RGiwb-0006lj-TW for submit@debbugs.gnu.org; Wed, 19 Oct 2011 23:05:23 -0400 X-Spam-Checker-Version: SpamAssassin 3.3.1 (2010-03-16) on eggs.gnu.org X-Spam-Level: X-Spam-Status: No, score=-2.4 required=5.0 tests=BAYES_00,RP_MATCHES_RCVD autolearn=unavailable version=3.3.1 Received: from lists.gnu.org ([140.186.70.17]:58615) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1RGiwb-0006lf-S3 for submit@debbugs.gnu.org; Wed, 19 Oct 2011 23:05:21 -0400 Received: from eggs.gnu.org ([140.186.70.92]:47370) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1RGiwb-0001Nq-01 for bug-gnu-emacs@gnu.org; Wed, 19 Oct 2011 23:05:21 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1RGiwZ-0006lO-Sa for bug-gnu-emacs@gnu.org; Wed, 19 Oct 2011 23:05:20 -0400 Received: from gundega.hpl.hp.com ([192.6.19.190]:41215) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1RGiwZ-0006kx-B5 for bug-gnu-emacs@gnu.org; Wed, 19 Oct 2011 23:05:19 -0400 Received: from mailhub-pa1.hpl.hp.com (mailhub-pa1.hpl.hp.com [15.25.115.25]) by gundega.hpl.hp.com (8.14.4/8.14.4/HPL-PA Relay) with ESMTP id p9K35Fck020993 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-SHA bits=256 verify=NOT) for ; Wed, 19 Oct 2011 20:05:15 -0700 Received: from MDL ([16.213.45.19]) by mailhub-pa1.hpl.hp.com (8.14.3/8.14.3/HPL-PA Hub) with ESMTP id p9K35Bkl020508; Wed, 19 Oct 2011 20:05:13 -0700 From: Mark Lillibridge Date: Wed, 19 Oct 2011 20:04:15 -0700 Message-ID: <87r528pdn4.fsf@hp.com> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Scanned-By: MIMEDefang 2.71 on 15.0.48.190 X-detected-operating-system: by eggs.gnu.org: GNU/Linux 2.6 (newer, 3) X-detected-operating-system: by eggs.gnu.org: GNU/Linux 2.6 (newer, 3) X-Received-From: 140.186.70.17 X-Spam-Score: -6.6 (------) X-BeenThere: debbugs-submit@debbugs.gnu.org X-Mailman-Version: 2.1.11 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Sender: debbugs-submit-bounces@debbugs.gnu.org Errors-To: debbugs-submit-bounces@debbugs.gnu.org X-Spam-Score: -6.6 (------) 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. From unknown Sat Jun 21 10:41:54 2025 MIME-Version: 1.0 X-Mailer: MIME-tools 5.427 (Entity 5.427) X-Loop: help-debbugs@gnu.org From: help-debbugs@gnu.org (GNU bug Tracking System) To: mark.lillibridge@hp.com Subject: bug#9802: closed (Re: bug#9802: 23.3; missing key binding for rmail-summary-by-senders in Rmail [PATCH]) Message-ID: References: <87r528pdn4.fsf@hp.com> X-Gnu-PR-Message: they-closed 9802 X-Gnu-PR-Package: emacs X-Gnu-PR-Keywords: patch Reply-To: 9802@debbugs.gnu.org Date: Fri, 28 Oct 2011 02:53:02 +0000 Content-Type: multipart/mixed; boundary="----------=_1319770382-7594-1" This is a multi-part message in MIME format... ------------=_1319770382-7594-1 Content-Disposition: inline Content-Transfer-Encoding: quoted-printable Content-Type: text/plain; charset="utf-8" Your bug report #9802: 23.3; missing key binding for rmail-summary-by-senders in Rmail [PAT= CH] which was filed against the emacs package, has been closed. The explanation is attached below, along with your original report. If you require more details, please reply to 9802@debbugs.gnu.org. --=20 9802: http://debbugs.gnu.org/cgi/bugreport.cgi?bug=3D9802 GNU Bug Tracking System Contact help-debbugs@gnu.org with problems ------------=_1319770382-7594-1 Content-Type: message/rfc822 Content-Disposition: inline Content-Transfer-Encoding: 7bit Received: (at 9802-done) by debbugs.gnu.org; 28 Oct 2011 02:52:39 +0000 Received: from localhost ([127.0.0.1] helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.69) (envelope-from ) id 1RJcYh-0001xs-M0 for submit@debbugs.gnu.org; Thu, 27 Oct 2011 22:52:39 -0400 Received: from ironport2-out.teksavvy.com ([206.248.154.181] helo=ironport2-out.pppoe.ca) by debbugs.gnu.org with esmtp (Exim 4.69) (envelope-from ) id 1RJcYe-0001xj-Oe for 9802-done@debbugs.gnu.org; Thu, 27 Oct 2011 22:52:37 -0400 X-IronPort-Anti-Spam-Filtered: true X-IronPort-Anti-Spam-Result: AusFAC0Yqk5MCrTo/2dsb2JhbABCmlSPDYEGgXIBAQQBViMFCws0EhQYDYg5tUuIfgShQ4RF X-IronPort-AV: E=Sophos;i="4.69,416,1315195200"; d="scan'208";a="144869263" Received: from 76-10-180-232.dsl.teksavvy.com (HELO pastel.home) ([76.10.180.232]) by ironport2-out.pppoe.ca with ESMTP/TLS/ADH-AES256-SHA; 27 Oct 2011 22:50:44 -0400 Received: by pastel.home (Postfix, from userid 20848) id C7D6D59208; Thu, 27 Oct 2011 22:50:43 -0400 (EDT) From: Stefan Monnier To: mark.lillibridge@hp.com Subject: Re: bug#9802: 23.3; missing key binding for rmail-summary-by-senders in Rmail [PATCH] Message-ID: References: <87r528pdn4.fsf@hp.com> Date: Thu, 27 Oct 2011 22:50:43 -0400 In-Reply-To: <87r528pdn4.fsf@hp.com> (Mark Lillibridge's message of "Wed, 19 Oct 2011 20:04:15 -0700") User-Agent: Gnus/5.13 (Gnus v5.13) Emacs/24.0.90 (gnu/linux) MIME-Version: 1.0 Content-Type: text/plain X-Spam-Score: -2.7 (--) X-Debbugs-Envelope-To: 9802-done Cc: 9802-done@debbugs.gnu.org X-BeenThere: debbugs-submit@debbugs.gnu.org X-Mailman-Version: 2.1.11 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Sender: debbugs-submit-bounces@debbugs.gnu.org Errors-To: debbugs-submit-bounces@debbugs.gnu.org X-Spam-Score: -2.7 (--) > 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 ------------=_1319770382-7594-1 Content-Type: message/rfc822 Content-Disposition: inline Content-Transfer-Encoding: 7bit Received: (at submit) by debbugs.gnu.org; 20 Oct 2011 03:06:36 +0000 Received: from localhost ([127.0.0.1] helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.69) (envelope-from ) id 1RGixo-0003qe-5U for submit@debbugs.gnu.org; Wed, 19 Oct 2011 23:06:36 -0400 Received: from eggs.gnu.org ([140.186.70.92]) by debbugs.gnu.org with esmtp (Exim 4.69) (envelope-from ) id 1RGixm-0003qT-5O for submit@debbugs.gnu.org; Wed, 19 Oct 2011 23:06:35 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1RGiwb-0006lj-TW for submit@debbugs.gnu.org; Wed, 19 Oct 2011 23:05:23 -0400 X-Spam-Checker-Version: SpamAssassin 3.3.1 (2010-03-16) on eggs.gnu.org X-Spam-Level: X-Spam-Status: No, score=-2.4 required=5.0 tests=BAYES_00,RP_MATCHES_RCVD autolearn=unavailable version=3.3.1 Received: from lists.gnu.org ([140.186.70.17]:58615) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1RGiwb-0006lf-S3 for submit@debbugs.gnu.org; Wed, 19 Oct 2011 23:05:21 -0400 Received: from eggs.gnu.org ([140.186.70.92]:47370) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1RGiwb-0001Nq-01 for bug-gnu-emacs@gnu.org; Wed, 19 Oct 2011 23:05:21 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1RGiwZ-0006lO-Sa for bug-gnu-emacs@gnu.org; Wed, 19 Oct 2011 23:05:20 -0400 Received: from gundega.hpl.hp.com ([192.6.19.190]:41215) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1RGiwZ-0006kx-B5 for bug-gnu-emacs@gnu.org; Wed, 19 Oct 2011 23:05:19 -0400 Received: from mailhub-pa1.hpl.hp.com (mailhub-pa1.hpl.hp.com [15.25.115.25]) by gundega.hpl.hp.com (8.14.4/8.14.4/HPL-PA Relay) with ESMTP id p9K35Fck020993 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-SHA bits=256 verify=NOT) for ; Wed, 19 Oct 2011 20:05:15 -0700 Received: from MDL ([16.213.45.19]) by mailhub-pa1.hpl.hp.com (8.14.3/8.14.3/HPL-PA Hub) with ESMTP id p9K35Bkl020508; Wed, 19 Oct 2011 20:05:13 -0700 From: Mark Lillibridge To: bug-gnu-emacs@gnu.org Subject: 23.3; missing key binding for rmail-summary-by-senders in Rmail [PATCH] Date: Wed, 19 Oct 2011 20:04:15 -0700 Message-ID: <87r528pdn4.fsf@hp.com> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Scanned-By: MIMEDefang 2.71 on 15.0.48.190 X-detected-operating-system: by eggs.gnu.org: GNU/Linux 2.6 (newer, 3) X-detected-operating-system: by eggs.gnu.org: GNU/Linux 2.6 (newer, 3) X-Received-From: 140.186.70.17 X-Spam-Score: -6.6 (------) X-Debbugs-Envelope-To: submit X-BeenThere: debbugs-submit@debbugs.gnu.org X-Mailman-Version: 2.1.11 Precedence: list Reply-To: mark.lillibridge@hp.com List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Sender: debbugs-submit-bounces@debbugs.gnu.org Errors-To: debbugs-submit-bounces@debbugs.gnu.org X-Spam-Score: -6.6 (------) 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. ------------=_1319770382-7594-1--