]> git.eshelyaron.com Git - emacs.git/commitdiff
(comint-password-prompt-regexp): Allow "(again)".
authorKarl Heuer <kwzh@gnu.org>
Sun, 27 Jun 1999 21:39:42 +0000 (21:39 +0000)
committerKarl Heuer <kwzh@gnu.org>
Sun, 27 Jun 1999 21:39:42 +0000 (21:39 +0000)
lisp/comint.el

index 09af0704a38e11b0da43716d5deb53a2abff908f..a8019f8ee31fd5138deb56a96cbf4c1c94107bb9 100644 (file)
@@ -281,8 +281,10 @@ This variable is buffer-local."
 ;; kinit prints a prompt like `Password for devnull@GNU.ORG: '.
 ;; ksu prints a prompt like `Kerberos password for devnull/root@GNU.ORG: '.
 ;; ssh-add prints a prompt like `Enter passphrase: '.
+;; Some implementations of passwd use "Password (again)" as the 2nd prompt.
 (defcustom comint-password-prompt-regexp
-  "\\(\\([Oo]ld \\|[Nn]ew \\|Kerberos \\|'s \\|login \\|^\\)[Pp]assword\\|pass phrase\\|Enter passphrase\\)\
+  "\\(\\([Oo]ld \\|[Nn]ew \\|Kerberos \\|'s \\|login \\|^\\)\
+[Pp]assword\\( (again)\\)?\\|pass phrase\\|Enter passphrase\\)\
 \\( for [^@ \t\n]+@[^@ \t\n]+\\)?:\\s *\\'"
   "*Regexp matching prompts for passwords in the inferior process.
 This is used by `comint-watch-for-password-prompt'."