diff options
author | Lars Magne Ingebrigtsen <larsi@gnus.org> | 2011-07-01 01:11:36 +0200 |
---|---|---|
committer | Lars Magne Ingebrigtsen <larsi@gnus.org> | 2011-07-01 01:11:36 +0200 |
commit | fd4983f28a6bb3c75952a9b3fc00705f74bfd94e (patch) | |
tree | cbf2a7a7336fda71a3bb42bf76cea3f0fb155717 /lisp/comint.el | |
parent | b09c3fe0254f12755e3d7f45a8c9464f710e157e (diff) | |
download | emacs-fd4983f28a6bb3c75952a9b3fc00705f74bfd94e.tar.gz emacs-fd4983f28a6bb3c75952a9b3fc00705f74bfd94e.tar.bz2 emacs-fd4983f28a6bb3c75952a9b3fc00705f74bfd94e.zip |
* comint.el (comint-password-prompt-regexp): Accept "Response" as
a password-like phrase.
This fixes the
[larsi@quimbies ~/]$ ssh root@quimby
Password:
Response:
case.
Diffstat (limited to 'lisp/comint.el')
-rw-r--r-- | lisp/comint.el | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lisp/comint.el b/lisp/comint.el index 5548d19ad30..2349fc0edd9 100644 --- a/lisp/comint.el +++ b/lisp/comint.el @@ -347,7 +347,7 @@ This variable is buffer-local." " +\\)" (regexp-opt '("password" "Password" "passphrase" "Passphrase" - "pass phrase" "Pass phrase")) + "pass phrase" "Pass phrase" "Response")) "\\(?:\\(?:, try\\)? *again\\| (empty for no passphrase)\\| (again)\\)?\ \\(?: for [^:]+\\)?:\\s *\\'") "Regexp matching prompts for passwords in the inferior process. |