mirror of
git://git.sv.gnu.org/emacs.git
synced 2026-02-04 14:40:54 -08:00
* lisp/isearch.el (isearch-mode-map): Allow backspace remapping
* lisp/isearch.el (isearch-mode-map): Don't inhibit function-key-map remapping for backspace (bug#20466).
This commit is contained in:
parent
fed6a0d6b1
commit
f2f5a39c6d
1 changed files with 1 additions and 1 deletions
|
|
@ -452,7 +452,7 @@ This is like `describe-bindings', but displays only Isearch keys."
|
|||
(define-key map "\M-\C-s" 'isearch-repeat-forward)
|
||||
(define-key map "\M-\C-r" 'isearch-repeat-backward)
|
||||
(define-key map "\177" 'isearch-delete-char)
|
||||
(define-key map [backspace] 'isearch-delete-char)
|
||||
(define-key map [backspace] 'undefined) ;bug#20466.
|
||||
(define-key map "\C-g" 'isearch-abort)
|
||||
|
||||
;; This assumes \e is the meta-prefix-char.
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue