Mercurial > emacs
changeset 14332:358d0db8457e
(term-read-noecho): Pass proper format string to message.
author | Karl Heuer <kwzh@gnu.org> |
---|---|
date | Thu, 25 Jan 1996 00:57:49 +0000 |
parents | b5434941b9b1 |
children | b14697aa6929 |
files | lisp/term.el |
diffstat | 1 files changed, 1 insertions(+), 1 deletions(-) [+] |
line wrap: on
line diff
--- a/lisp/term.el Thu Jan 25 00:57:33 1996 +0000 +++ b/lisp/term.el Thu Jan 25 00:57:49 1996 +0000 @@ -1587,7 +1587,7 @@ (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