summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorChong Yidong <cyd@gnu.org>2013-02-09 12:43:42 +0800
committerChong Yidong <cyd@gnu.org>2013-02-09 12:43:42 +0800
commite78e7e486dd2a5c7c3a82b6848e5fd1cecd9881e (patch)
treef95870532ad7baf8a352a74fe28e07dffd666245
parentdc55466e6766659999ea202c2f0158bf8b320f55 (diff)
downloademacs-e78e7e486dd2a5c7c3a82b6848e5fd1cecd9881e.tar.gz
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. Fixes: debbugs:13510
-rw-r--r--etc/NEWS12
-rw-r--r--lisp/ChangeLog5
-rw-r--r--lisp/mail/emacsbug.el2
3 files changed, 15 insertions, 4 deletions
diff --git a/etc/NEWS b/etc/NEWS
index 7ac6c89ebf4..f236fd1ee69 100644
--- a/etc/NEWS
+++ b/etc/NEWS
@@ -164,6 +164,11 @@ The PCL-CVS commands are still available via the keyboard.
** 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 @@ to use the old defaults relying on external mail facilities
(`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
diff --git a/lisp/ChangeLog b/lisp/ChangeLog
index 26df503156d..4e1f0ee09ab 100644
--- a/lisp/ChangeLog
+++ b/lisp/ChangeLog
@@ -1,3 +1,8 @@
+2013-02-09 Chong Yidong <cyd@gnu.org>
+
+ * 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 <acm@muc.de>
Fix bug in the state cache mechanism. Remove 'BOD "strategy". Refactor.
diff --git a/lisp/mail/emacsbug.el b/lisp/mail/emacsbug.el
index f0b671ec386..8ed645b15a2 100644
--- a/lisp/mail/emacsbug.el
+++ b/lisp/mail/emacsbug.el
@@ -332,7 +332,7 @@ usually do not have translators for other languages.\n\n")))
(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))