[gnus git] branch master updated: m0-7-269-g340a6ba =1= Remove [backspace] key binding because it shadows DEL (bug#16035)
Katsumi Yamaoka <[email protected]>
| Newsgroups | gmane.emacs.gnus.cvs |
|---|---|
| Message-ID | <[email protected]> |
via 340a6ba61b49ffc1ec90066cf24a8f701cf05b56 (commit)
from 2819580740be5b9eecba50cf74f1d4ffae4e95ef (commit)
- Log -----------------------------------------------------------------
commit 340a6ba61b49ffc1ec90066cf24a8f701cf05b56
Author: Juri Linkov <[email protected]>
Date: Fri Dec 20 05:20:53 2013 +0000
Remove [backspace] key binding because it shadows DEL (bug#16035)
diff --git a/lisp/ChangeLog b/lisp/ChangeLog
index f352cf9..18223a6 100644
--- a/lisp/ChangeLog
+++ b/lisp/ChangeLog
@@ -1,3 +1,13 @@
+2013-12-19 Juri Linkov <[email protected]>
+
+ * gnus.el (gnus-suppress-keymap):
+ * gnus-art.el (gnus-article-mode-map):
+ * gnus-group.el (gnus-group-mode-map):
+ * gnus-sum.el (gnus-summary-mode-map, gnus-summary-backend-map):
+ Remove [backspace] key binding because it shadows DEL (bug#16035).
+
+ * mm-decode.el (mm-viewer-completion-map): Remove duplicate definition.
+
2013-12-19 Katsumi Yamaoka <[email protected]>
* gnus-uu.el (gnus-uu-decode-binhex, gnus-uu-decode-binhex-view):
diff --git a/lisp/gnus-art.el b/lisp/gnus-art.el
index 2b14714..b42c688 100644
--- a/lisp/gnus-art.el
+++ b/lisp/gnus-art.el
@@ -4396,7 +4396,6 @@ If variable `gnus-use-long-file-name' is non-nil, it is
[?\S-\ ] gnus-article-goto-prev-page
"\177" gnus-article-goto-prev-page
[delete] gnus-article-goto-prev-page
- [backspace] gnus-article-goto-prev-page
"\C-c^" gnus-article-refer-article
"h" gnus-article-show-summary
"s" gnus-article-show-summary
diff --git a/lisp/gnus-group.el b/lisp/gnus-group.el
index a1bc62f..5cd2add 100644
--- a/lisp/gnus-group.el
+++ b/lisp/gnus-group.el
@@ -571,7 +571,6 @@ simple manner.")
"p" gnus-group-prev-unread-group
"\177" gnus-group-prev-unread-group
[delete] gnus-group-prev-unread-group
- [backspace] gnus-group-prev-unread-group
"N" gnus-group-next-group
"P" gnus-group-prev-group
"\M-n" gnus-group-next-unread-group-same-level
diff --git a/lisp/gnus-sum.el b/lisp/gnus-sum.el
index 61cf7ec..6873db7 100644
--- a/lisp/gnus-sum.el
+++ b/lisp/gnus-sum.el
@@ -1850,7 +1850,6 @@ increase the score of each group you read."
[?\S-\ ] gnus-summary-prev-page
"\177" gnus-summary-prev-page
[delete] gnus-summary-prev-page
- [backspace] gnus-summary-prev-page
"\r" gnus-summary-scroll-up
"\M-\r" gnus-summary-scroll-down
"n" gnus-summary-next-unread-article
@@ -2222,7 +2221,6 @@ increase the score of each group you read."
"\M-\C-e" gnus-summary-expire-articles-now
"\177" gnus-summary-delete-article
[delete] gnus-summary-delete-article
- [backspace] gnus-summary-delete-article
"m" gnus-summary-move-article
"r" gnus-summary-respool-article
"w" gnus-summary-edit-article
diff --git a/lisp/gnus.el b/lisp/gnus.el
index ebdcc45..6ac6a2c 100644
--- a/lisp/gnus.el
+++ b/lisp/gnus.el
@@ -3035,7 +3035,7 @@ See Info node `(gnus)Formatting Variables'."
(defun gnus-suppress-keymap (keymap)
(suppress-keymap keymap)
- (let ((keys `([backspace] [delete] "\177" "\M-u"))) ;gnus-mouse-2
+ (let ((keys `([delete] "\177" "\M-u"))) ;gnus-mouse-2
(while keys
(define-key keymap (pop keys) 'undefined))))
diff --git a/lisp/mm-decode.el b/lisp/mm-decode.el
index 26d18fc..5a4ceb8 100644
--- a/lisp/mm-decode.el
+++ b/lisp/mm-decode.el
@@ -538,14 +538,6 @@ result of the verification."
map)
"Keymap for input viewer with completion.")
-(defvar mm-viewer-completion-map
- (let ((map (make-sparse-keymap 'mm-viewer-completion-map)))
- (set-keymap-parent map minibuffer-local-completion-map)
- ;; Should we bind other key to minibuffer-complete-word?
- (define-key map " " 'self-insert-command)
- map)
- "Keymap for input viewer with completion.")
-
;;; The functions.
(defun mm-alist-to-plist (alist)
-----------------------------------------------------------------------
Those revisions listed above that are new to this repository have
not appeared on any other notification email; so we listed those
revisions in full, above.
Summary of changes:
lisp/ChangeLog | 10 ++++++++++
lisp/gnus-art.el | 1 -
lisp/gnus-group.el | 1 -
lisp/gnus-sum.el | 2 --
lisp/gnus.el | 2 +-
lisp/mm-decode.el | 8 --------
6 files changed, 11 insertions(+), 13 deletions(-)
This is an automated email from the git hooks/post-receive script. It was
generated because a ref change was pushed to the repository containing
the project "Gnus Project".
The branch, master has been updated
hooks/post-receive
--
Gnus Project