changeset 108675:e3df298f4131

Fix for momentary-string-display (Bug#6238). * lisp/subr.el (momentary-string-display): Just use read-event to read the exit event (Bug#6238).
author Chong Yidong <cyd@stupidchicken.com>
date Mon, 31 May 2010 10:11:18 -0400
parents 11d22db7246f
children 3a80fc3735bf
files lisp/ChangeLog lisp/subr.el
diffstat 2 files changed, 10 insertions(+), 16 deletions(-) [+]
line wrap: on
line diff
--- a/lisp/ChangeLog	Mon May 31 01:09:32 2010 +0200
+++ b/lisp/ChangeLog	Mon May 31 10:11:18 2010 -0400
@@ -1,3 +1,8 @@
+2010-05-31  Juanma Barranquero  <lekktu@gmail.com>
+
+	* subr.el (momentary-string-display): Just use read-event to read
+	the exit event (Bug#6238).
+
 2010-05-29  Chong Yidong  <cyd@stupidchicken.com>
 
 	* ansi-color.el: Delete unused escape sequences (Bug#6085).
--- a/lisp/subr.el	Mon May 31 01:09:32 2010 +0200
+++ b/lisp/subr.el	Mon May 31 10:11:18 2010 -0400
@@ -2207,22 +2207,11 @@
                 (recenter (/ (window-height) 2))))
           (message (or message "Type %s to continue editing.")
                    (single-key-description exit-char))
-          (let (char)
-            (if (integerp exit-char)
-                (condition-case nil
-                    (progn
-                      (setq char (read-char))
-                      (or (eq char exit-char)
-                          (setq unread-command-events (list char))))
-                  (error
-                   ;; `exit-char' is a character, hence it differs
-                   ;; from char, which is an event.
-                   (setq unread-command-events (list char))))
-              ;; `exit-char' can be an event, or an event description list.
-              (setq char (read-event))
-              (or (eq char exit-char)
-                  (eq char (event-convert-list exit-char))
-                  (setq unread-command-events (list char))))))
+	  (let ((event (read-event)))
+	    ;; `exit-char' can be an event, or an event description list.
+	    (or (eq event exit-char)
+		(eq event (event-convert-list exit-char))
+		(setq unread-command-events (list event)))))
       (delete-overlay ol))))