summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJuanma Barranquero <lekktu@gmail.com>2003-02-14 09:57:45 +0000
committerJuanma Barranquero <lekktu@gmail.com>2003-02-14 09:57:45 +0000
commitfb925678b64ce2fd5e015a741e1ce17928cf5b71 (patch)
tree940bbe8abf24f23afe24cd7f168a0b3b5bb00865
parent15b1534b1f750cd7ee9c0012a8e4b1754bc4709b (diff)
downloademacs-fb925678b64ce2fd5e015a741e1ce17928cf5b71.tar.gz
(widget-choose): Fix use of character constant.
-rw-r--r--lisp/wid-edit.el2
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)