# HG changeset patch # User Andreas Schwab # Date 1076280035 0 # Node ID 94735a7620dd9ad971c49c9ad5b602624ddff782 # Parent f0e8bbd3dc507796a97d7a7a887da6778d6046ec (eshell-send-invisible): Fix format string. diff -r f0e8bbd3dc50 -r 94735a7620dd lisp/eshell/esh-mode.el --- 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 @@ -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)