From: Michael Albinus Date: Sun, 19 Mar 2023 08:37:35 +0000 (+0100) Subject: * lisp/net/tramp.el (tramp-yn-prompt-regexp): Fix regexp. X-Git-Tag: emacs-29.0.90~133 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=231190b37f811933dc7da608fc442439d7b6acb1;p=emacs.git * lisp/net/tramp.el (tramp-yn-prompt-regexp): Fix regexp. --- diff --git a/lisp/net/tramp.el b/lisp/net/tramp.el index b24bd33de82..df2f0850b83 100644 --- a/lisp/net/tramp.el +++ b/lisp/net/tramp.el @@ -684,7 +684,7 @@ See also `tramp-yn-prompt-regexp'." :type 'regexp) (defcustom tramp-yn-prompt-regexp - (rx (| "Store key in cache? (y/n)" + (rx (| (: "Store key in cache? (y/n" (* nonl) ")") "Update cached key? (y/n, Return cancels connection)") (* blank)) "Regular expression matching all y/n queries which need to be confirmed.