changeset 49786:60e3eed1b79e

(widget-choose): Fix use of character constant.
author Juanma Barranquero <lekktu@gmail.com>
date Fri, 14 Feb 2003 09:57:45 +0000
parents 25477ff93766
children 6269b5c10aec
files lisp/wid-edit.el
diffstat 1 files changed, 1 insertions(+), 1 deletions(-) [+]
line wrap: on
line diff
--- a/lisp/wid-edit.el	Fri Feb 14 09:57:24 2003 +0000
+++ b/lisp/wid-edit.el	Fri Feb 14 09:57:45 2003 +0000
@@ -271,7 +271,7 @@
 		 (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)