diff lisp/isearch.el @ 58876:a804ec066ee7

(isearch-mode-map): Treat S-SPC like SPC.
author Richard M. Stallman <rms@gnu.org>
date Fri, 10 Dec 2004 01:52:25 +0000
parents 1cdfec9f283d
children 47fe933a4eb4
line wrap: on
line diff
--- 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)