]> code.delx.au - gnu-emacs/commitdiff
(eshell-send-invisible): Fix format string.
authorAndreas Schwab <schwab@suse.de>
Sun, 8 Feb 2004 22:40:35 +0000 (22:40 +0000)
committerAndreas Schwab <schwab@suse.de>
Sun, 8 Feb 2004 22:40:35 +0000 (22:40 +0000)
lisp/eshell/esh-mode.el

index 579d1200caf8b28f6b5484c298dbb34c552b6bb2..f76900bf48211c9e6df5fe26ecc44f7da650d9a6 100644 (file)
@@ -1,6 +1,6 @@
 ;;; esh-mode.el --- user interface
 
-;; Copyright (C) 1999, 2000, 2001 Free Software Foundation
+;; Copyright (C) 1999, 2000, 2001, 2004 Free Software Foundation
 
 ;; Author: John Wiegley <johnw@gnu.org>
 
@@ -1017,7 +1017,7 @@ a key."
 Then send it to the process running in the current buffer."
   (interactive "P")                     ; Defeat snooping via C-x ESC ESC
   (let ((str (read-passwd
-             (format "Password: "
+             (format "%s Password: "
                      (process-name (eshell-interactive-process))))))
     (if (stringp str)
        (process-send-string (eshell-interactive-process)