# HG changeset patch # User Richard M. Stallman # Date 1102643545 0 # Node ID a804ec066ee7a126f4411f7c9f57f9b8cc3970b3 # Parent 7c4d537a17e7bb84934ce88df122447857590659 (isearch-mode-map): Treat S-SPC like SPC. diff -r 7c4d537a17e7 -r a804ec066ee7 lisp/isearch.el --- a/lisp/isearch.el Thu Dec 09 23:05:36 2004 +0000 +++ b/lisp/isearch.el Fri Dec 10 01:52:25 2004 +0000 @@ -229,6 +229,7 @@ (while (< i 256) (define-key map (vector i) 'isearch-printing-char) (setq i (1+ i))) + (define-key map (vector i) 'isearch-printing-char) ;; To handle local bindings with meta char prefix keys, define ;; another full keymap. This must be done for any other prefix @@ -262,6 +263,7 @@ (define-key map "\r" 'isearch-exit) (define-key map "\C-j" 'isearch-printing-char) (define-key map "\t" 'isearch-printing-char) + (define-key map [?\S-\ ] 'isearch-printing-char) (define-key map "\C-w" 'isearch-yank-word-or-char) (define-key map "\M-\C-w" 'isearch-del-char)