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

lisp/net/tramp.el

index 3871ee4dddde9c7a75fa283bb9ba80f19117999a..21dbd40b1d2411331b7e7a0dc32213d2c561172e 100644 (file)
@@ -642,7 +642,7 @@ This regexp must match both `tramp-initial-end-of-output' and
   (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.
 
@@ -652,7 +652,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