aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorFrancesco Potortì2001-10-17 15:38:45 +0000
committerFrancesco Potortì2001-10-17 15:38:45 +0000
commit5889cc202a4c5050a5f93898d760e755b515c586 (patch)
treee1ba19219ae02ec8ed1339af15019617df2fa6e0
parent23e8bd8665b9f024438f6cd5a915482b285e4010 (diff)
downloademacs-5889cc202a4c5050a5f93898d760e755b515c586.tar.gz
emacs-5889cc202a4c5050a5f93898d760e755b515c586.zip
(comint-password-prompt-regexp): Make it less restrictive, letting
comint recognise OpenSSH2 passphrase prompts.
-rw-r--r--lisp/ChangeLog5
-rw-r--r--lisp/comint.el2
2 files changed, 6 insertions, 1 deletions
diff --git a/lisp/ChangeLog b/lisp/ChangeLog
index c57c4d0b4c0..98f1fd8a07c 100644
--- a/lisp/ChangeLog
+++ b/lisp/ChangeLog
@@ -1,3 +1,8 @@
12001-10-17 Francesco Potorti` <pot@gnu.org>
2
3 * comint.el (comint-password-prompt-regexp): Make it less
4 restrictive, letting comint recognise OpenSSH2 passphrase prompts.
5
12001-10-15 John Wiegley <johnw@gnu.org> 62001-10-15 John Wiegley <johnw@gnu.org>
2 7
3 * eshell/em-unix.el (eshell/cat): Do a quick test if something is 8 * eshell/em-unix.el (eshell/cat): Do a quick test if something is
diff --git a/lisp/comint.el b/lisp/comint.el
index 4be70c63dfa..d3b6cd0bef0 100644
--- a/lisp/comint.el
+++ b/lisp/comint.el
@@ -316,7 +316,7 @@ This variable is buffer-local."
316(defcustom comint-password-prompt-regexp 316(defcustom comint-password-prompt-regexp
317 "\\(\\([Oo]ld \\|[Nn]ew \\|Kerberos \\|'s \\|login \\|CVS \\|^\\)\ 317 "\\(\\([Oo]ld \\|[Nn]ew \\|Kerberos \\|'s \\|login \\|CVS \\|^\\)\
318[Pp]assword\\( (again)\\)?\\|pass phrase\\|Enter passphrase\\)\ 318[Pp]assword\\( (again)\\)?\\|pass phrase\\|Enter passphrase\\)\
319\\( for [^@ \t\n]+@[^@ \t\n]+\\)?:\\s *\\'" 319\\( for [^:]+\\)?:\\s *\\'"
320 "*Regexp matching prompts for passwords in the inferior process. 320 "*Regexp matching prompts for passwords in the inferior process.
321This is used by `comint-watch-for-password-prompt'." 321This is used by `comint-watch-for-password-prompt'."
322 :type 'regexp 322 :type 'regexp