diff options
author | Chong Yidong <cyd@stupidchicken.com> | 2010-06-11 10:39:54 -0400 |
---|---|---|
committer | Chong Yidong <cyd@stupidchicken.com> | 2010-06-11 10:39:54 -0400 |
commit | 6534e58a57f60d338491ca97db605cbb116f0c2f (patch) | |
tree | 63f39d89c5cdb563c67a5d8a2599c3371296ed87 /lisp/comint.el | |
parent | 84d9562f579e56ce7bdf9c14b37ab0fa1f596681 (diff) | |
download | emacs-6534e58a57f60d338491ca97db605cbb116f0c2f.tar.gz |
Fix for comint-password-prompt-regexp (Bug#6367).
* lisp/comint.el (comint-password-prompt-regexp): Fix 2010-04-10 change
(Bug#6367).
* comint-testsuite.el: New file.
Diffstat (limited to 'lisp/comint.el')
-rw-r--r-- | lisp/comint.el | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lisp/comint.el b/lisp/comint.el index fd3cff3b5f9..b097baad189 100644 --- a/lisp/comint.el +++ b/lisp/comint.el @@ -340,7 +340,7 @@ This variable is buffer-local." ;; Something called "perforce" uses "Enter password:". (defcustom comint-password-prompt-regexp (concat - "^\\(" + "\\(" (regexp-opt '("Enter" "Enter same" "Old" "old" "New" "new" "'s" "login" "Kerberos" "CVS" "UNIX" " SMB" "LDAP" "[sudo]" "Repeat" "Bad")) |