emacs-diffs
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[Emacs-diffs] /srv/bzr/emacs/emacs-24 r111239: Correct non-standard bind


From: Chong Yidong
Subject: [Emacs-diffs] /srv/bzr/emacs/emacs-24 r111239: Correct non-standard binding of report-emacs-bug-insert-to-mailer.
Date: Sat, 09 Feb 2013 12:43:42 +0800
User-agent: Bazaar (2.5.0)

------------------------------------------------------------
revno: 111239
fixes bug: http://debbugs.gnu.org/13510
committer: Chong Yidong <address@hidden>
branch nick: emacs-24
timestamp: Sat 2013-02-09 12:43:42 +0800
message:
  Correct non-standard binding of report-emacs-bug-insert-to-mailer.
  
  * lisp/mail/emacsbug.el (report-emacs-bug): Change binding of
  report-emacs-bug-insert-to-mailer to C-c M-i.
modified:
  etc/NEWS
  lisp/ChangeLog
  lisp/mail/emacsbug.el
=== modified file 'etc/NEWS'
--- a/etc/NEWS  2013-01-16 08:10:18 +0000
+++ b/etc/NEWS  2013-02-09 04:43:42 +0000
@@ -164,6 +164,11 @@
 ** Using "unibyte: t" in Lisp source files is obsolete.
 Use "coding: raw-text" instead.
 
+** In the buffer made by `M-x report-emacs-bug', the `C-c m' binding
+has been changed to `C-c M-i' (`report-emacs-bug-insert-to-mailer').
+The previous binding, introduced in Emacs 24.1, was a mistake, because
+`C-c LETTER' bindings are reserved for user customizations.
+
 ** Internationalization
 
 *** New language environment: Persian.
@@ -984,9 +989,10 @@
 (`sendmail-send-it' on GNU/Linux and other Unix-like systems, and
 `mailclient-send-it' on Windows).
 
-*** Typing C-c m in the buffer made by M-x report-emacs-bug transfers
-the report to your desktop's preferred mail client, if there is one.
-This uses either the "xdg-email" utility, or Mac OS's "open" command.
+*** Typing `C-c m' in the buffer made by `M-x report-emacs-bug'
+transfers the report to your desktop's preferred mail client, if there
+is one.  This uses either the "xdg-email" utility, or Mac OS's "open"
+command.
 
 *** See Changes in Specialized Modes and Packages for SMTPmail changes
 and Mail mode changes

=== modified file 'lisp/ChangeLog'
--- a/lisp/ChangeLog    2013-02-07 07:40:58 +0000
+++ b/lisp/ChangeLog    2013-02-09 04:43:42 +0000
@@ -1,3 +1,8 @@
+2013-02-09  Chong Yidong  <address@hidden>
+
+       * mail/emacsbug.el (report-emacs-bug): Change binding of
+       report-emacs-bug-insert-to-mailer to C-c M-i (Bug#13510).
+
 2013-02-02  Alan Mackenzie  <address@hidden>
 
        Fix bug in the state cache mechanism.  Remove 'BOD "strategy".  
Refactor.

=== modified file 'lisp/mail/emacsbug.el'
--- a/lisp/mail/emacsbug.el     2013-01-01 09:11:05 +0000
+++ b/lisp/mail/emacsbug.el     2013-02-09 04:43:42 +0000
@@ -332,7 +332,7 @@
     (use-local-map (nconc (make-sparse-keymap) (current-local-map)))
     (define-key (current-local-map) "\C-c\C-i" 'info-emacs-bug)
     (if can-insert-mail
-       (define-key (current-local-map) "\C-cm"
+       (define-key (current-local-map) "\C-c\M-i"
          'report-emacs-bug-insert-to-mailer))
     (setq report-emacs-bug-send-command (get mail-user-agent 'sendfunc)
          report-emacs-bug-send-hook (get mail-user-agent 'hookvar))


reply via email to

[Prev in Thread] Current Thread [Next in Thread]