]> git.eshelyaron.com Git - emacs.git/commitdiff
(term-read-noecho): Pass proper format string to message.
authorKarl Heuer <kwzh@gnu.org>
Thu, 25 Jan 1996 00:57:49 +0000 (00:57 +0000)
committerKarl Heuer <kwzh@gnu.org>
Thu, 25 Jan 1996 00:57:49 +0000 (00:57 +0000)
lisp/term.el

index 823752e17703ca27d09d906f07a96731d65e13f3..4ea880de1eeff6096c494d0c4f68872f3f41a12c 100644 (file)
@@ -1587,7 +1587,7 @@ applications."
     (while (not done)
       (if stars
           (message "%s%s" prompt (make-string (length ans) ?*))
-        (message prompt))
+        (message "%s" prompt))
       (setq c (read-char))
       (cond ((= c ?\C-g)
              ;; This function may get called from a process filter, where