aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorRichard M. Stallman1995-09-29 03:49:35 +0000
committerRichard M. Stallman1995-09-29 03:49:35 +0000
commitb2a4185181005f13dbd2bc03975f1f46a92b21b9 (patch)
tree63931dd63dbd51ed8b9a1c1de04c21926f98212f
parentf1f9f8d5aa8c919dd549b0c0f012488e85978a20 (diff)
downloademacs-b2a4185181005f13dbd2bc03975f1f46a92b21b9.tar.gz
emacs-b2a4185181005f13dbd2bc03975f1f46a92b21b9.zip
(comint-password-prompt-regexp): Recognize
Old Password and New password.
-rw-r--r--lisp/comint.el2
1 files changed, 1 insertions, 1 deletions
diff --git a/lisp/comint.el b/lisp/comint.el
index 53518198dea..e0010795328 100644
--- a/lisp/comint.el
+++ b/lisp/comint.el
@@ -226,7 +226,7 @@ appears in the buffer.
226This variable is buffer-local.") 226This variable is buffer-local.")
227 227
228(defvar comint-password-prompt-regexp 228(defvar comint-password-prompt-regexp
229 "\\(^[Pp]assword\\|pass phrase\\):\\s *\\'" 229 "\\(^\\(Old \\|New \\|\\)[Pp]assword\\|pass phrase\\):\\s *\\'"
230 "*Regexp matching prompts for passwords in the inferior process. 230 "*Regexp matching prompts for passwords in the inferior process.
231This is used by `comint-watch-for-password-prompt'.") 231This is used by `comint-watch-for-password-prompt'.")
232 232