diff options
author | Juanma Barranquero <lekktu@gmail.com> | 2003-02-14 09:57:45 +0000 |
---|---|---|
committer | Juanma Barranquero <lekktu@gmail.com> | 2003-02-14 09:57:45 +0000 |
commit | b5cb36acaa9eb077e83c019bc68bf007d13d728f (patch) | |
tree | f93c80cd6d9e3eaa747f46fa11cad9bb13db1146 /lisp/wid-edit.el | |
parent | a18cce10ccd28e758d901f77ba3fdb61bb0a56f8 (diff) | |
download | emacs-b5cb36acaa9eb077e83c019bc68bf007d13d728f.tar.gz |
(widget-choose): Fix use of character constant.
Diffstat (limited to 'lisp/wid-edit.el')
-rw-r--r-- | lisp/wid-edit.el | 2 |
1 files changed, 1 insertions, 1 deletions
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) |