summaryrefslogtreecommitdiff
path: root/lisp/mail/emacsbug.el
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 /lisp/mail/emacsbug.el
parentdc55466e6766659999ea202c2f0158bf8b320f55 (diff)
downloademacs-e78e7e486dd2a5c7c3a82b6848e5fd1cecd9881e.tar.gz
emacs-e78e7e486dd2a5c7c3a82b6848e5fd1cecd9881e.tar.bz2
emacs-e78e7e486dd2a5c7c3a82b6848e5fd1cecd9881e.zip
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
Diffstat (limited to 'lisp/mail/emacsbug.el')
-rw-r--r--lisp/mail/emacsbug.el2
1 files changed, 1 insertions, 1 deletions
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))