aboutsummaryrefslogtreecommitdiffstats
path: root/lisp/comint.el
diff options
context:
space:
mode:
authorJoel N. Weber II <[email protected]>1999-05-07 05:26:44 +0000
committerJoel N. Weber II <[email protected]>1999-05-07 05:26:44 +0000
commit9cc68f101e583296a1377b2f9c45bcc0795a538a (patch)
treef36112de83a072c681d1f2a80e6c7fe0870e9cc6 /lisp/comint.el
parentb20bb856de18f3fdd93effd191180c5a39051a70 (diff)
(comint-password-prompt-regexp): Modified so that it matches the
output of kinit.
Diffstat (limited to 'lisp/comint.el')
-rw-r--r--lisp/comint.el5
1 files changed, 3 insertions, 2 deletions
diff --git a/lisp/comint.el b/lisp/comint.el
index 16ef53abee..e56cb25928 100644
--- a/lisp/comint.el
+++ b/lisp/comint.el
@@ -1,6 +1,6 @@
;;; comint.el --- general command interpreter in a window stuff
-;; Copyright (C) 1988, 90, 92, 93, 94, 95, 96, 97, 98 Free Software Foundation, Inc.
+;; Copyright (C) 1988, 90, 92, 93, 94, 95, 96, 97, 98, 99 Free Software Foundation, Inc.
;; Author: Olin Shivers <[email protected]> then
;; Simon Marshall <[email protected]>
@@ -278,8 +278,9 @@ This variable is buffer-local."
:group 'comint)
;; AIX puts the name of the person being su'd to in front of the prompt.
+;; kinit prints a prompt like `Password for [email protected]: '.
(defcustom comint-password-prompt-regexp
- "\\(\\([Oo]ld \\|[Nn]ew \\|'s \\|login \\|^\\)[Pp]assword\\|pass phrase\\):\\s *\\'"
+ "\\(\\([Oo]ld \\|[Nn]ew \\|'s \\|login \\|^\\)[Pp]assword\\|pass phrase\\).*:\\s *\\'"
"*Regexp matching prompts for passwords in the inferior process.
This is used by `comint-watch-for-password-prompt'."
:type 'regexp