1
Fork 0
mirror of git://git.sv.gnu.org/emacs.git synced 2025-12-15 10:30:25 -08:00

(widget-choose): Fix use of character constant.

This commit is contained in:
Juanma Barranquero 2003-02-14 09:57:45 +00:00
parent a18cce10cc
commit b5cb36acaa

View 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)