Fix bug#7224.
* lisp/comint.el (comint-password-prompt-regexp): Match "enter the password".
This commit is contained in:
parent
88dbda519d
commit
0d0d9424a2
2 changed files with 7 additions and 1 deletions
|
@ -1,3 +1,8 @@
|
|||
2010-10-23 Glenn Morris <rgm@gnu.org>
|
||||
|
||||
* comint.el (comint-password-prompt-regexp): Match
|
||||
"enter the password". (Bug#7224)
|
||||
|
||||
2010-10-22 Juanma Barranquero <lekktu@gmail.com>
|
||||
|
||||
* progmodes/dcl-mode.el (dcl-electric-reindent-regexps):
|
||||
|
|
|
@ -340,13 +340,14 @@ This variable is buffer-local."
|
|||
;; Some implementations of passwd use "Password (again)" as the 2nd prompt.
|
||||
;; Something called "perforce" uses "Enter password:".
|
||||
(defcustom comint-password-prompt-regexp
|
||||
"\\(\\(Enter \\|[Oo]ld \\|[Nn]ew \\|'s \\|login \\|\
|
||||
"\\(\\([Ee]nter \\(?:same \\|the \\)?\\|[Oo]ld \\|[Nn]ew \\|'s \\|login \\|\
|
||||
Kerberos \\|CVS \\|UNIX \\| SMB \\|LDAP \\|\\[sudo] \\|^\\)\
|
||||
\[Pp]assword\\( (again)\\)?\\|\
|
||||
pass phrase\\|\\(Enter \\|Repeat \\|Bad \\)?[Pp]assphrase\\)\
|
||||
\\(?:, try again\\)?\\(?: for [^:]+\\)?:\\s *\\'"
|
||||
"Regexp matching prompts for passwords in the inferior process.
|
||||
This is used by `comint-watch-for-password-prompt'."
|
||||
:version "23.3"
|
||||
:type 'regexp
|
||||
:group 'comint)
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue