diff options
author | Richard M. Stallman <rms@gnu.org> | 2001-12-11 06:03:46 +0000 |
---|---|---|
committer | Richard M. Stallman <rms@gnu.org> | 2001-12-11 06:03:46 +0000 |
commit | 502f25360d4bda182a1736cd45cfbc57fd06ca5a (patch) | |
tree | 97efc96aa8c3a35a002a8d0154413008ea3040d3 /lisp | |
parent | 6fa6525fde11a6fd5a359a2e08fc6b02fca362c9 (diff) | |
download | emacs-502f25360d4bda182a1736cd45cfbc57fd06ca5a.tar.gz emacs-502f25360d4bda182a1736cd45cfbc57fd06ca5a.tar.bz2 emacs-502f25360d4bda182a1736cd45cfbc57fd06ca5a.zip |
(comint-password-prompt-regexp): Match "UNIX Password".
Diffstat (limited to 'lisp')
-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 645e2ec1c7d..2aa265fbf42 100644 --- a/lisp/comint.el +++ b/lisp/comint.el @@ -314,7 +314,7 @@ This variable is buffer-local." ;; 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 \\|CVS \\|^\\)\ + "\\(\\([Oo]ld \\|[Nn]ew \\|Kerberos \\|'s \\|login \\|CVS \\|UNIX \\|^\\)\ [Pp]assword\\( (again)\\)?\\|pass phrase\\|Enter passphrase\\)\ \\( for [^:]+\\)?:\\s *\\'" "*Regexp matching prompts for passwords in the inferior process. |