Mercurial > emacs
changeset 53870:94735a7620dd
(eshell-send-invisible): Fix format string.
author | Andreas Schwab <schwab@suse.de> |
---|---|
date | Sun, 08 Feb 2004 22:40:35 +0000 |
parents | f0e8bbd3dc50 |
children | dbe1ef05fa24 |
files | lisp/eshell/esh-mode.el |
diffstat | 1 files changed, 2 insertions(+), 2 deletions(-) [+] |
line wrap: on
line diff
--- a/lisp/eshell/esh-mode.el Sun Feb 08 22:40:16 2004 +0000 +++ b/lisp/eshell/esh-mode.el Sun Feb 08 22:40:35 2004 +0000 @@ -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 @@ 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)