emacs-diffs
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[Emacs-diffs] /srv/bzr/emacs/trunk r104818: * comint.el (comint-password


From: Lars Magne Ingebrigtsen
Subject: [Emacs-diffs] /srv/bzr/emacs/trunk r104818: * comint.el (comint-password-prompt-regexp): Accept "Response" as
Date: Fri, 01 Jul 2011 01:11:36 +0200
User-agent: Bazaar (2.3.1)

------------------------------------------------------------
revno: 104818
committer: Lars Magne Ingebrigtsen <address@hidden>
branch nick: trunk
timestamp: Fri 2011-07-01 01:11:36 +0200
message:
  * comint.el (comint-password-prompt-regexp): Accept "Response" as
  a password-like phrase.
  
  This fixes the
  
  address@hidden ~/]$ ssh address@hidden
  Password: 
  Response: 
  
  case.
modified:
  lisp/ChangeLog
  lisp/comint.el
=== modified file 'lisp/ChangeLog'
--- a/lisp/ChangeLog    2011-06-30 20:45:12 +0000
+++ b/lisp/ChangeLog    2011-06-30 23:11:36 +0000
@@ -1,3 +1,8 @@
+2011-06-30  Lars Magne Ingebrigtsen  <address@hidden>
+
+       * comint.el (comint-password-prompt-regexp): Accept "Response" as
+       a password-like phrase.
+
 2011-06-30  Mastake YAMATO  <address@hidden>
 
        * progmodes/cc-guess.el: New file.

=== modified file 'lisp/comint.el'
--- a/lisp/comint.el    2011-06-05 23:20:16 +0000
+++ b/lisp/comint.el    2011-06-30 23:11:36 +0000
@@ -347,7 +347,7 @@
    " +\\)"
    (regexp-opt
     '("password" "Password" "passphrase" "Passphrase"
-      "pass phrase" "Pass phrase"))
+      "pass phrase" "Pass phrase" "Response"))
    "\\(?:\\(?:, try\\)? *again\\| (empty for no passphrase)\\| (again)\\)?\
 \\(?: for [^:]+\\)?:\\s *\\'")
   "Regexp matching prompts for passwords in the inferior process.


reply via email to

[Prev in Thread] Current Thread [Next in Thread]