]> git.eshelyaron.com Git - emacs.git/commitdiff
(comint-password-prompt-regexp): Modified so that it matches the
authorJoel N. Weber II <devnull@gnu.org>
Fri, 7 May 1999 05:26:44 +0000 (05:26 +0000)
committerJoel N. Weber II <devnull@gnu.org>
Fri, 7 May 1999 05:26:44 +0000 (05:26 +0000)
output of kinit.

lisp/comint.el

index 16ef53abeebba794262b0c52e59fc0c003ab4d11..e56cb2592838a71ae8873db9e61846c335c528cc 100644 (file)
@@ -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 <shivers@cs.cmu.edu> then
 ;;     Simon Marshall <simon@gnu.ai.mit.edu>
@@ -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 devnull@GNU.ORG: '.
 (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