From b5cb36acaa9eb077e83c019bc68bf007d13d728f Mon Sep 17 00:00:00 2001 From: Juanma Barranquero Date: Fri, 14 Feb 2003 09:57:45 +0000 Subject: [PATCH] (widget-choose): Fix use of character constant. --- lisp/wid-edit.el | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lisp/wid-edit.el b/lisp/wid-edit.el index 068b805d18b..c4501ba43e1 100644 --- a/lisp/wid-edit.el +++ b/lisp/wid-edit.el @@ -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) -- 2.39.2