aboutsummaryrefslogtreecommitdiffstats
path: root/lisp
diff options
context:
space:
mode:
authorKarl Heuer1996-01-25 00:57:49 +0000
committerKarl Heuer1996-01-25 00:57:49 +0000
commit4d656e4255ea340925a02014461973097a6394fc (patch)
tree29c67a0a83e5960d19debf9a46e96745f013c5ac /lisp
parent498020d2b5cf0bfd2ae18f174bb5b96aad950325 (diff)
downloademacs-4d656e4255ea340925a02014461973097a6394fc.tar.gz
emacs-4d656e4255ea340925a02014461973097a6394fc.zip
(term-read-noecho): Pass proper format string to message.
Diffstat (limited to 'lisp')
-rw-r--r--lisp/term.el2
1 files changed, 1 insertions, 1 deletions
diff --git a/lisp/term.el b/lisp/term.el
index 823752e1770..4ea880de1ee 100644
--- a/lisp/term.el
+++ b/lisp/term.el
@@ -1587,7 +1587,7 @@ applications."
1587 (while (not done) 1587 (while (not done)
1588 (if stars 1588 (if stars
1589 (message "%s%s" prompt (make-string (length ans) ?*)) 1589 (message "%s%s" prompt (make-string (length ans) ?*))
1590 (message prompt)) 1590 (message "%s" prompt))
1591 (setq c (read-char)) 1591 (setq c (read-char))
1592 (cond ((= c ?\C-g) 1592 (cond ((= c ?\C-g)
1593 ;; This function may get called from a process filter, where 1593 ;; This function may get called from a process filter, where