diff options
| author | Andreas Schwab | 2004-02-08 22:40:35 +0000 |
|---|---|---|
| committer | Andreas Schwab | 2004-02-08 22:40:35 +0000 |
| commit | db22de71ec917427f89dbafbc25e5e83aee65c52 (patch) | |
| tree | 1dcb40feca394c4c373879bf3330f94b113dfb72 /lisp/eshell | |
| parent | 79cd7893f44f6865af560c3b35d9a64e770a590b (diff) | |
| download | emacs-db22de71ec917427f89dbafbc25e5e83aee65c52.tar.gz emacs-db22de71ec917427f89dbafbc25e5e83aee65c52.zip | |
(eshell-send-invisible): Fix format string.
Diffstat (limited to 'lisp/eshell')
| -rw-r--r-- | lisp/eshell/esh-mode.el | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lisp/eshell/esh-mode.el b/lisp/eshell/esh-mode.el index 579d1200caf..f76900bf482 100644 --- a/lisp/eshell/esh-mode.el +++ b/lisp/eshell/esh-mode.el | |||
| @@ -1,6 +1,6 @@ | |||
| 1 | ;;; esh-mode.el --- user interface | 1 | ;;; esh-mode.el --- user interface |
| 2 | 2 | ||
| 3 | ;; Copyright (C) 1999, 2000, 2001 Free Software Foundation | 3 | ;; Copyright (C) 1999, 2000, 2001, 2004 Free Software Foundation |
| 4 | 4 | ||
| 5 | ;; Author: John Wiegley <johnw@gnu.org> | 5 | ;; Author: John Wiegley <johnw@gnu.org> |
| 6 | 6 | ||
| @@ -1017,7 +1017,7 @@ a key." | |||
| 1017 | Then send it to the process running in the current buffer." | 1017 | Then send it to the process running in the current buffer." |
| 1018 | (interactive "P") ; Defeat snooping via C-x ESC ESC | 1018 | (interactive "P") ; Defeat snooping via C-x ESC ESC |
| 1019 | (let ((str (read-passwd | 1019 | (let ((str (read-passwd |
| 1020 | (format "Password: " | 1020 | (format "%s Password: " |
| 1021 | (process-name (eshell-interactive-process)))))) | 1021 | (process-name (eshell-interactive-process)))))) |
| 1022 | (if (stringp str) | 1022 | (if (stringp str) |
| 1023 | (process-send-string (eshell-interactive-process) | 1023 | (process-send-string (eshell-interactive-process) |