diff options
author | Michael Albinus <michael.albinus@gmx.de> | 2016-08-17 10:10:47 +0200 |
---|---|---|
committer | Michael Albinus <michael.albinus@gmx.de> | 2016-08-17 10:10:47 +0200 |
commit | 80082d00d8ab8803c792751c0019c2f88614f48e (patch) | |
tree | 4f841b2386022f38b9afcb0aa6e7e5a0e562203a /lisp/comint.el | |
parent | 527bf164bb56d67115ff7fda97c565ee8b0e569f (diff) | |
download | emacs-80082d00d8ab8803c792751c0019c2f88614f48e.tar.gz |
Fix Bug#24203
* lisp/comint.el (comint-password-prompt-regexp): Relax regexp. (Bug#24203)
Diffstat (limited to 'lisp/comint.el')
-rw-r--r-- | lisp/comint.el | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lisp/comint.el b/lisp/comint.el index 863374d944c..0319eeb80c7 100644 --- a/lisp/comint.el +++ b/lisp/comint.el @@ -350,8 +350,8 @@ This variable is buffer-local." t) " +\\)" "\\(?:" (regexp-opt password-word-equivalents) "\\|Response\\)" - "\\(?:\\(?:, try\\)? *again\\| (empty for no passphrase)\\| (again)\\)?\ -\\(?: for [^::៖]+\\)?[::៖]\\s *\\'") + "\\(?:\\(?:, try\\)? *again\\| (empty for no passphrase)\\| (again)\\)?" + "\\(?: for .+\\)?[::៖]\\s *\\'") "Regexp matching prompts for passwords in the inferior process. This is used by `comint-watch-for-password-prompt'." :version "25.2" |