aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJuanma Barranquero2003-02-14 09:57:45 +0000
committerJuanma Barranquero2003-02-14 09:57:45 +0000
commitb5cb36acaa9eb077e83c019bc68bf007d13d728f (patch)
treef93c80cd6d9e3eaa747f46fa11cad9bb13db1146
parenta18cce10ccd28e758d901f77ba3fdb61bb0a56f8 (diff)
downloademacs-b5cb36acaa9eb077e83c019bc68bf007d13d728f.tar.gz
emacs-b5cb36acaa9eb077e83c019bc68bf007d13d728f.zip
(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."
271 (while (not (or (and (>= char ?0) (< char next-digit)) 271 (while (not (or (and (>= char ?0) (< char next-digit))
272 (eq value 'keyboard-quit))) 272 (eq value 'keyboard-quit)))
273 ;; Unread a SPC to lead to our new menu. 273 ;; Unread a SPC to lead to our new menu.
274 (setq unread-command-events (cons ?\ unread-command-events)) 274 (setq unread-command-events (cons ?\ unread-command-events))
275 (setq keys (read-key-sequence title)) 275 (setq keys (read-key-sequence title))
276 (setq value 276 (setq value
277 (lookup-key overriding-terminal-local-map keys t) 277 (lookup-key overriding-terminal-local-map keys t)