summaryrefslogtreecommitdiff
path: root/lisp/isearchb.el
diff options
context:
space:
mode:
authorJuri Linkov <juri@jurta.org>2013-12-20 00:12:12 +0200
committerJuri Linkov <juri@jurta.org>2013-12-20 00:12:12 +0200
commit50ab1da6d67215219c4a26a045edcad28fa0b096 (patch)
treecaf66ad4c39ffd6b7818a9a4094eb2915b28a807 /lisp/isearchb.el
parent3d6e95e7673bf1352a439cdd705eae00e65a0542 (diff)
downloademacs-50ab1da6d67215219c4a26a045edcad28fa0b096.tar.gz
* lisp/isearch.el (isearch-mode-map): Bind `M-s e' to `isearch-edit-string'.
Put :advertised-binding on `M-s c', `M-s r', `M-s e'. (Bug#16035) (minibuffer-history-symbol): Move variable declaration closer to its usage. * lisp/isearchb.el (isearchb): Add `event-basic-type' on `last-command-event'. (Bug#14785) * lisp/gnus/gnus.el (gnus-suppress-keymap): * lisp/gnus/gnus-art.el (gnus-article-mode-map): * lisp/gnus/gnus-group.el (gnus-group-mode-map): * lisp/gnus/gnus-sum.el (gnus-summary-mode-map, gnus-summary-backend-map): Remove [backspace] key binding because it shadows DEL (bug#16035). * lisp/gnus/mm-decode.el (mm-viewer-completion-map): Remove duplicate definition.
Diffstat (limited to 'lisp/isearchb.el')
-rw-r--r--lisp/isearchb.el3
1 files changed, 2 insertions, 1 deletions
diff --git a/lisp/isearchb.el b/lisp/isearchb.el
index b66173ea02d..4199cd7fde0 100644
--- a/lisp/isearchb.el
+++ b/lisp/isearchb.el
@@ -139,7 +139,8 @@ Its purpose is to pass different call arguments to
(if last-command-event
(setq iswitchb-rescan t
iswitchb-text (concat iswitchb-text
- (char-to-string last-command-event))))
+ (char-to-string
+ (event-basic-type last-command-event)))))
(iswitchb-set-matches)
(let* ((match (car iswitchb-matches))
(buf (and match (get-buffer match))))