summaryrefslogtreecommitdiff
path: root/lisp/comint.el
diff options
context:
space:
mode:
authorLars Magne Ingebrigtsen <larsi@gnus.org>2016-04-26 00:30:36 +0200
committerLars Magne Ingebrigtsen <larsi@gnus.org>2016-04-26 00:31:26 +0200
commit4f25bef332264df2e4d096e529a63655fa03c5bc (patch)
tree153e5573e3416b68e1d416191b4e59081b82b995 /lisp/comint.el
parent89d1776b81ab552192ee41f13ce84ff86bda4556 (diff)
downloademacs-4f25bef332264df2e4d096e529a63655fa03c5bc.tar.gz
Include "Retype" as a comint password prompt
* lisp/comint.el (comint-password-prompt-regexp): Include "Retype" to catch "Retype password for [account]:" from the "pass" utility (bug#22942).
Diffstat (limited to 'lisp/comint.el')
-rw-r--r--lisp/comint.el5
1 files changed, 3 insertions, 2 deletions
diff --git a/lisp/comint.el b/lisp/comint.el
index dcd4a5ae4cf..88fc0b2d197 100644
--- a/lisp/comint.el
+++ b/lisp/comint.el
@@ -345,14 +345,15 @@ This variable is buffer-local."
(regexp-opt
'("Enter" "enter" "Enter same" "enter same" "Enter the" "enter the"
"Old" "old" "New" "new" "'s" "login"
- "Kerberos" "CVS" "UNIX" " SMB" "LDAP" "[sudo]" "Repeat" "Bad") t)
+ "Kerberos" "CVS" "UNIX" " SMB" "LDAP" "[sudo]" "Repeat" "Bad" "Retype")
+ t)
" +\\)"
"\\(?:" (regexp-opt password-word-equivalents) "\\|Response\\)"
"\\(?:\\(?:, 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 "24.4"
+ :version "25.2"
:type 'regexp
:group 'comint)