]> git.eshelyaron.com Git - emacs.git/commitdiff
Fix password prompt in Tramp (do not merge)
authorMichael Albinus <michael.albinus@gmx.de>
Mon, 30 Jan 2023 10:43:04 +0000 (11:43 +0100)
committerMichael Albinus <michael.albinus@gmx.de>
Mon, 30 Jan 2023 10:43:04 +0000 (11:43 +0100)
* lisp/net/tramp.el (tramp-password-prompt-regexp):
Allow alternative trailing colons.  (Bug#61168)

lisp/net/tramp.el

index 1916d50af03590e0377d747fe36daa6118675645..eaddc36b54aeb862bee4d608a3f8ee2e82bf5ac2 100644 (file)
@@ -643,7 +643,7 @@ This regexp must match both `tramp-initial-end-of-output' and
   (tramp-compat-rx
    bol (* nonl)
    (group (regexp (regexp-opt password-word-equivalents)))
-   (* nonl) ":" (? "\^@") (* blank))
+   (* nonl) (any "::៖") (? "\^@") (* blank))
   "Regexp matching password-like prompts.
 The regexp should match at end of buffer.
 
@@ -653,7 +653,7 @@ usually more convenient to add new passphrases to that variable
 instead of altering this variable.
 
 The `sudo' program appears to insert a `^@' character into the prompt."
-  :version "24.4"
+  :version "29.1"
   :type 'regexp)
 
 (defcustom tramp-wrong-passwd-regexp