diff options
author | Juanma Barranquero <lekktu@gmail.com> | 2006-11-27 14:03:41 +0000 |
---|---|---|
committer | Juanma Barranquero <lekktu@gmail.com> | 2006-11-27 14:03:41 +0000 |
commit | 2634a72a0f8aec7e4b1fc7278d25ec4b92c41839 (patch) | |
tree | b8ac9cf85591935e66b5daa20a6ddfa56857402e /lisp/novice.el | |
parent | 7c0bbe7fa1f4df3280ad18d2b3ffdfbb076773cc (diff) | |
download | emacs-2634a72a0f8aec7e4b1fc7278d25ec4b92c41839.tar.gz |
(disabled-command-function): "?\ " -> "?\s".
Diffstat (limited to 'lisp/novice.el')
-rw-r--r-- | lisp/novice.el | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lisp/novice.el b/lisp/novice.el index 7fff480e2c2..ca826ca8d08 100644 --- a/lisp/novice.el +++ b/lisp/novice.el @@ -95,7 +95,7 @@ SPC to try the command just this once, but leave it disabled. (while (progn (setq char (read-event)) (or (not (numberp char)) (not (memq (downcase char) - '(?! ?y ?n ?\ ?\C-g))))) + '(?! ?y ?n ?\s ?\C-g))))) (ding) (message "Please type y, n, ! or SPC (the space bar): ")))) (setq char (downcase char)) |