changeset 14343:ab021899d604

(read-quoted-char): Delete format call inside message.
author Karl Heuer <kwzh@gnu.org>
date Thu, 25 Jan 1996 01:03:16 +0000
parents 942b8cf37599
children 1e97bcb05a16
files lisp/subr.el
diffstat 1 files changed, 1 insertions(+), 2 deletions(-) [+]
line wrap: on
line diff
--- a/lisp/subr.el	Thu Jan 25 01:03:10 1996 +0000
+++ b/lisp/subr.el	Thu Jan 25 01:03:16 1996 +0000
@@ -625,8 +625,7 @@
 	    ((and (<= ?0 char) (<= char ?7))
 	     (setq code (+ (* code 8) (- char ?0))
 		   count (1+ count))
-	     (and prompt (message (setq prompt
-					(format "%s %c" prompt char)))))
+	     (and prompt (setq prompt (message "%s %c" prompt char))))
 	    ((> count 0)
 	     (setq unread-command-events (list char) count 259))
 	    (t (setq code char count 259))))