diff options
author | Richard M. Stallman <rms@gnu.org> | 1997-07-15 18:51:38 +0000 |
---|---|---|
committer | Richard M. Stallman <rms@gnu.org> | 1997-07-15 18:51:38 +0000 |
commit | a2ad45b9aec9f87f07a2a8c2c58ed1768980efa9 (patch) | |
tree | 459d0000d24b5b845ef88e5e80e59f18328554df | |
parent | 579c8381290358c9efcba7770770a18ce4decf25 (diff) | |
download | emacs-a2ad45b9aec9f87f07a2a8c2c58ed1768980efa9.tar.gz emacs-a2ad45b9aec9f87f07a2a8c2c58ed1768980efa9.tar.bz2 emacs-a2ad45b9aec9f87f07a2a8c2c58ed1768980efa9.zip |
(global-map): Turn off the S-SPC binding.
-rw-r--r-- | lisp/international/mule-cmds.el | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/lisp/international/mule-cmds.el b/lisp/international/mule-cmds.el index f53fe961d1c..2dfc71ab0d4 100644 --- a/lisp/international/mule-cmds.el +++ b/lisp/international/mule-cmds.el @@ -142,8 +142,10 @@ ;; but it won't be used that frequently. (define-key global-map "\C-\\" 'toggle-input-method) -;; Here's an alternative key binding for X users (Shift-SPACE). -(define-key global-map [?\S- ] 'toggle-input-method) +;;; This is no good because people often type Shift-SPC +;;; meaning to type SPC. -- rms. +;;; ;; Here's an alternative key binding for X users (Shift-SPACE). +;;; (define-key global-map [?\S- ] 'toggle-input-method) (defun toggle-enable-multibyte-characters (&optional arg) "Change whether this buffer enables multibyte characters. |