# HG changeset patch # User Richard M. Stallman # Date 882671637 0 # Node ID cfb872a45411726fef8dcc421273cdc7b33f7634 # Parent 693dbc5a21905d0c8ba64acd025b68123089b23f (isearch-mode-map): Don't count above 256 when setting up printing characters. diff -r 693dbc5a2190 -r cfb872a45411 lisp/isearch.el --- a/lisp/isearch.el Sun Dec 21 02:32:45 1997 +0000 +++ b/lisp/isearch.el Sun Dec 21 02:33:57 1997 +0000 @@ -246,9 +246,9 @@ (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)))