mirror of
git://git.sv.gnu.org/emacs.git
synced 2025-12-15 10:30:25 -08:00
(isearch-mode-map): Don't count above 256
when setting up printing characters.
This commit is contained in:
parent
3b4490b3d1
commit
6b0f9bdfdd
1 changed files with 2 additions and 2 deletions
|
|
@ -246,9 +246,9 @@ Default value, nil, means edit the string instead."
|
|||
(define-key map (make-string 1 i) 'isearch-other-control-char)
|
||||
(setq i (1+ i)))
|
||||
|
||||
;; Printing chars extend the search string by default.
|
||||
;; Single-byte printing chars extend the search string by default.
|
||||
(setq i ?\ )
|
||||
(while (< i (length (nth 1 map)))
|
||||
(while (< i 256)
|
||||
(define-key map (vector i) 'isearch-printing-char)
|
||||
(setq i (1+ i)))
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue