diff options
| -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. | |||
| 95 | (while (progn (setq char (read-event)) | 95 | (while (progn (setq char (read-event)) |
| 96 | (or (not (numberp char)) | 96 | (or (not (numberp char)) |
| 97 | (not (memq (downcase char) | 97 | (not (memq (downcase char) |
| 98 | '(?! ?y ?n ?\ ?\C-g))))) | 98 | '(?! ?y ?n ?\s ?\C-g))))) |
| 99 | (ding) | 99 | (ding) |
| 100 | (message "Please type y, n, ! or SPC (the space bar): ")))) | 100 | (message "Please type y, n, ! or SPC (the space bar): ")))) |
| 101 | (setq char (downcase char)) | 101 | (setq char (downcase char)) |