aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorKarl Heuer1999-05-09 00:44:50 +0000
committerKarl Heuer1999-05-09 00:44:50 +0000
commitdb4a79ae0bd8b80655167c47aeaabc81561720e0 (patch)
treebdc2873aa517b992bf5badc392abd3e9ae354216
parentaadf7ff324d103269e56ed16a0e912f3789e1397 (diff)
downloademacs-db4a79ae0bd8b80655167c47aeaabc81561720e0.tar.gz
emacs-db4a79ae0bd8b80655167c47aeaabc81561720e0.zip
(comint-password-prompt-regexp): Fix last change to be more specific.
-rw-r--r--lisp/comint.el3
1 files changed, 2 insertions, 1 deletions
diff --git a/lisp/comint.el b/lisp/comint.el
index e56cb259283..bc4eec04892 100644
--- a/lisp/comint.el
+++ b/lisp/comint.el
@@ -280,7 +280,8 @@ This variable is buffer-local."
280;; AIX puts the name of the person being su'd to in front of the prompt. 280;; AIX puts the name of the person being su'd to in front of the prompt.
281;; kinit prints a prompt like `Password for devnull@GNU.ORG: '. 281;; kinit prints a prompt like `Password for devnull@GNU.ORG: '.
282(defcustom comint-password-prompt-regexp 282(defcustom comint-password-prompt-regexp
283 "\\(\\([Oo]ld \\|[Nn]ew \\|'s \\|login \\|^\\)[Pp]assword\\|pass phrase\\).*:\\s *\\'" 283 "\\(\\([Oo]ld \\|[Nn]ew \\|'s \\|login \\|^\\)[Pp]assword\\|pass phrase\\)\
284\\( for [^@ \t\n]+@[^@ \t\n]+\\)?:\\s *\\'"
284 "*Regexp matching prompts for passwords in the inferior process. 285 "*Regexp matching prompts for passwords in the inferior process.
285This is used by `comint-watch-for-password-prompt'." 286This is used by `comint-watch-for-password-prompt'."
286 :type 'regexp 287 :type 'regexp