]> git.eshelyaron.com Git - emacs.git/commitdiff
(widget-choose): Fix use of character constant.
authorJuanma Barranquero <lekktu@gmail.com>
Fri, 14 Feb 2003 09:57:45 +0000 (09:57 +0000)
committerJuanma Barranquero <lekktu@gmail.com>
Fri, 14 Feb 2003 09:57:45 +0000 (09:57 +0000)
lisp/wid-edit.el

index 068b805d18b7cf15050b99ef36834eeb14cbefde..c4501ba43e1cc293aebde38a864e8d56bf6146c0 100644 (file)
@@ -271,7 +271,7 @@ minibuffer."
                 (while (not (or (and (>= char ?0) (< char next-digit))
                                 (eq value 'keyboard-quit)))
                   ;; Unread a SPC to lead to our new menu.
-                  (setq unread-command-events (cons ?\ unread-command-events))
+                  (setq unread-command-events (cons ?\  unread-command-events))
                   (setq keys (read-key-sequence title))
                   (setq value
                         (lookup-key overriding-terminal-local-map keys t)