+2004-12-09 Richard M. Stallman <rms@gnu.org>
+
+ * isearch.el (isearch-mode-map): Treat S-SPC like SPC.
+
2004-12-10 Nick Roberts <nickrob@snap.net.nz>
* xt-mouse.el (xterm-mouse-event): Correct cursor position in a
(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
(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)