1
0
mirror of https://git.savannah.gnu.org/git/emacs.git synced 2024-11-26 07:33:47 +00:00

Fix Bug#24203

* lisp/comint.el (comint-password-prompt-regexp): Relax regexp.  (Bug#24203)
This commit is contained in:
Michael Albinus 2016-08-17 10:10:47 +02:00
parent 527bf164bb
commit 80082d00d8

View File

@ -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"