From: Juanma Barranquero Date: Mon, 27 Nov 2006 14:03:41 +0000 (+0000) Subject: (disabled-command-function): "?\ " -> "?\s". X-Git-Tag: emacs-pretest-22.0.92~462 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=2634a72a0f8aec7e4b1fc7278d25ec4b92c41839;p=emacs.git (disabled-command-function): "?\ " -> "?\s". --- 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))