From: Michael Albinus Date: Wed, 17 Aug 2016 08:10:47 +0000 (+0200) Subject: Fix Bug#24203 X-Git-Tag: emacs-26.0.90~1731 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=80082d00d8ab8803c792751c0019c2f88614f48e;p=emacs.git Fix Bug#24203 * lisp/comint.el (comint-password-prompt-regexp): Relax regexp. (Bug#24203) --- 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"