diff options
| author | Karl Heuer | 1996-01-25 00:57:49 +0000 |
|---|---|---|
| committer | Karl Heuer | 1996-01-25 00:57:49 +0000 |
| commit | 4d656e4255ea340925a02014461973097a6394fc (patch) | |
| tree | 29c67a0a83e5960d19debf9a46e96745f013c5ac | |
| parent | 498020d2b5cf0bfd2ae18f174bb5b96aad950325 (diff) | |
| download | emacs-4d656e4255ea340925a02014461973097a6394fc.tar.gz emacs-4d656e4255ea340925a02014461973097a6394fc.zip | |
(term-read-noecho): Pass proper format string to message.
| -rw-r--r-- | lisp/term.el | 2 |
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 |