]> git.eshelyaron.com Git - emacs.git/commitdiff
Fix bug#7224.
authorGlenn Morris <rgm@gnu.org>
Sat, 23 Oct 2010 19:15:44 +0000 (12:15 -0700)
committerGlenn Morris <rgm@gnu.org>
Sat, 23 Oct 2010 19:15:44 +0000 (12:15 -0700)
* lisp/comint.el (comint-password-prompt-regexp): Match "enter the password".

lisp/ChangeLog
lisp/comint.el

index a09514c658b8cf1d8694c6c0755a67dcc035cfc8..c5e4ab903ad532a3fdf7b4073b3de5a3b51e4908 100644 (file)
@@ -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):
index d5d17357ed17feb8d7c9cad4e3832505b5987380..bb43f47b377798caf13578c7f5b446eb8e62335b 100644 (file)
@@ -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)