emacs-diffs
[Top][All Lists]
Advanced

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

[Emacs-diffs] /srv/bzr/emacs/trunk r112635: comint-password-prompt-regex


From: Glenn Morris
Subject: [Emacs-diffs] /srv/bzr/emacs/trunk r112635: comint-password-prompt-regexp tweak
Date: Sat, 18 May 2013 12:38:35 -0700
User-agent: Bazaar (2.6b2)

------------------------------------------------------------
revno: 112635
committer: Glenn Morris <address@hidden>
branch nick: trunk
timestamp: Sat 2013-05-18 12:38:35 -0700
message:
  comint-password-prompt-regexp tweak
  
  Ref: http://lists.gnu.org/archive/html/emacs-devel/2013-05/msg00401.html
  
  * lisp/comint.el (comint-password-prompt-regexp):
  Allow "password for XXX" where XXX contains colons (eg https://...).
modified:
  lisp/ChangeLog
  lisp/comint.el
=== modified file 'lisp/ChangeLog'
--- a/lisp/ChangeLog    2013-05-18 03:17:35 +0000
+++ b/lisp/ChangeLog    2013-05-18 19:38:35 +0000
@@ -1,3 +1,8 @@
+2013-05-18  Glenn Morris  <address@hidden>
+
+       * comint.el (comint-password-prompt-regexp):
+       Allow "password for XXX" where XXX contains colons (eg https://...).
+
 2013-05-18  Leo Liu  <address@hidden>
 
        * progmodes/octave.el (inferior-octave-startup): Use OCTAVE_SRCDIR

=== modified file 'lisp/comint.el'
--- a/lisp/comint.el    2013-05-15 23:55:41 +0000
+++ b/lisp/comint.el    2013-05-18 19:38:35 +0000
@@ -351,7 +351,7 @@
     '("password" "Password" "passphrase" "Passphrase"
       "pass phrase" "Pass phrase" "Response"))
    "\\(?:\\(?:, try\\)? *again\\| (empty for no passphrase)\\| (again)\\)?\
-\\(?: for [^:]+\\)?:\\s *\\'")
+\\(?: for .+\\)?:\\s *\\'")
   "Regexp matching prompts for passwords in the inferior process.
 This is used by `comint-watch-for-password-prompt'."
   :version "24.1"


reply via email to

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