diff options
| -rw-r--r-- | lisp/comint.el | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lisp/comint.el b/lisp/comint.el index a056ba51ea0..6e35bc0f572 100644 --- a/lisp/comint.el +++ b/lisp/comint.el | |||
| @@ -1400,8 +1400,8 @@ applications." | |||
| 1400 | (done nil)) | 1400 | (done nil)) |
| 1401 | (while (not done) | 1401 | (while (not done) |
| 1402 | (if stars | 1402 | (if stars |
| 1403 | (message "%s%s" prompt (make-string (length ans) ?*)) | 1403 | (message "%s%s" prompt (make-string (length ans) ?*)) |
| 1404 | (message prompt)) | 1404 | (message "%s" prompt)) |
| 1405 | ;; Use this instead of `read-char' to avoid "Non-character input-event". | 1405 | ;; Use this instead of `read-char' to avoid "Non-character input-event". |
| 1406 | (setq c (read-char-exclusive)) | 1406 | (setq c (read-char-exclusive)) |
| 1407 | (cond ((= c ?\C-g) | 1407 | (cond ((= c ?\C-g) |