From: Andreas Schwab Date: Sun, 8 Feb 2004 22:40:35 +0000 (+0000) Subject: (eshell-send-invisible): Fix format string. X-Git-Tag: ttn-vms-21-2-B4~7696 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=db22de71ec917427f89dbafbc25e5e83aee65c52;p=emacs.git (eshell-send-invisible): Fix format string. --- 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 @@ ;;; 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 @@ -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)