diff options
| author | Chong Yidong | 2013-02-09 12:43:42 +0800 |
|---|---|---|
| committer | Chong Yidong | 2013-02-09 12:43:42 +0800 |
| commit | e78e7e486dd2a5c7c3a82b6848e5fd1cecd9881e (patch) | |
| tree | f95870532ad7baf8a352a74fe28e07dffd666245 | |
| parent | dc55466e6766659999ea202c2f0158bf8b320f55 (diff) | |
| download | emacs-e78e7e486dd2a5c7c3a82b6848e5fd1cecd9881e.tar.gz 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
| -rw-r--r-- | etc/NEWS | 12 | ||||
| -rw-r--r-- | lisp/ChangeLog | 5 | ||||
| -rw-r--r-- | lisp/mail/emacsbug.el | 2 |
3 files changed, 15 insertions, 4 deletions
| @@ -164,6 +164,11 @@ The PCL-CVS commands are still available via the keyboard. | |||
| 164 | ** Using "unibyte: t" in Lisp source files is obsolete. | 164 | ** Using "unibyte: t" in Lisp source files is obsolete. |
| 165 | Use "coding: raw-text" instead. | 165 | Use "coding: raw-text" instead. |
| 166 | 166 | ||
| 167 | ** In the buffer made by `M-x report-emacs-bug', the `C-c m' binding | ||
| 168 | has been changed to `C-c M-i' (`report-emacs-bug-insert-to-mailer'). | ||
| 169 | The previous binding, introduced in Emacs 24.1, was a mistake, because | ||
| 170 | `C-c LETTER' bindings are reserved for user customizations. | ||
| 171 | |||
| 167 | ** Internationalization | 172 | ** Internationalization |
| 168 | 173 | ||
| 169 | *** New language environment: Persian. | 174 | *** New language environment: Persian. |
| @@ -984,9 +989,10 @@ to use the old defaults relying on external mail facilities | |||
| 984 | (`sendmail-send-it' on GNU/Linux and other Unix-like systems, and | 989 | (`sendmail-send-it' on GNU/Linux and other Unix-like systems, and |
| 985 | `mailclient-send-it' on Windows). | 990 | `mailclient-send-it' on Windows). |
| 986 | 991 | ||
| 987 | *** Typing C-c m in the buffer made by M-x report-emacs-bug transfers | 992 | *** Typing `C-c m' in the buffer made by `M-x report-emacs-bug' |
| 988 | the report to your desktop's preferred mail client, if there is one. | 993 | transfers the report to your desktop's preferred mail client, if there |
| 989 | This uses either the "xdg-email" utility, or Mac OS's "open" command. | 994 | is one. This uses either the "xdg-email" utility, or Mac OS's "open" |
| 995 | command. | ||
| 990 | 996 | ||
| 991 | *** See Changes in Specialized Modes and Packages for SMTPmail changes | 997 | *** See Changes in Specialized Modes and Packages for SMTPmail changes |
| 992 | and Mail mode changes | 998 | 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 @@ | |||
| 1 | 2013-02-09 Chong Yidong <cyd@gnu.org> | ||
| 2 | |||
| 3 | * mail/emacsbug.el (report-emacs-bug): Change binding of | ||
| 4 | report-emacs-bug-insert-to-mailer to C-c M-i (Bug#13510). | ||
| 5 | |||
| 1 | 2013-02-02 Alan Mackenzie <acm@muc.de> | 6 | 2013-02-02 Alan Mackenzie <acm@muc.de> |
| 2 | 7 | ||
| 3 | Fix bug in the state cache mechanism. Remove 'BOD "strategy". Refactor. | 8 | 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"))) | |||
| 332 | (use-local-map (nconc (make-sparse-keymap) (current-local-map))) | 332 | (use-local-map (nconc (make-sparse-keymap) (current-local-map))) |
| 333 | (define-key (current-local-map) "\C-c\C-i" 'info-emacs-bug) | 333 | (define-key (current-local-map) "\C-c\C-i" 'info-emacs-bug) |
| 334 | (if can-insert-mail | 334 | (if can-insert-mail |
| 335 | (define-key (current-local-map) "\C-cm" | 335 | (define-key (current-local-map) "\C-c\M-i" |
| 336 | 'report-emacs-bug-insert-to-mailer)) | 336 | 'report-emacs-bug-insert-to-mailer)) |
| 337 | (setq report-emacs-bug-send-command (get mail-user-agent 'sendfunc) | 337 | (setq report-emacs-bug-send-command (get mail-user-agent 'sendfunc) |
| 338 | report-emacs-bug-send-hook (get mail-user-agent 'hookvar)) | 338 | report-emacs-bug-send-hook (get mail-user-agent 'hookvar)) |