diff lisp/bindings.el @ 20638:c3360a392ae4

Change "?\C-\ " to "?\C- " because "\ " is changed to standing for nothing in lread.c (read_escape).
author Kenichi Handa <handa@m17n.org>
date Mon, 12 Jan 1998 05:48:48 +0000
parents 46c697b88c83
children 25b0721fc2fc
line wrap: on
line diff
--- a/lisp/bindings.el	Sun Jan 11 12:48:04 1998 +0000
+++ b/lisp/bindings.el	Mon Jan 12 05:48:48 1998 +0000
@@ -372,10 +372,10 @@
 
 (define-key global-map "\C-@" 'set-mark-command)
 ;; Many people are used to typing C-SPC and getting C-@.
-(define-key global-map [?\C-\ ] 'set-mark-command)
+(define-key global-map [?\C- ] 'set-mark-command)
 (define-key ctl-x-map "\C-x" 'exchange-point-and-mark)
 (define-key ctl-x-map "\C-@" 'pop-global-mark)
-(define-key ctl-x-map [?\C-\ ] 'pop-global-mark)
+(define-key ctl-x-map [?\C- ] 'pop-global-mark)
 
 (define-key global-map "\C-n" 'next-line)
 (define-key global-map "\C-p" 'previous-line)