diff options
| -rw-r--r-- | lisp/net/tramp.el | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/lisp/net/tramp.el b/lisp/net/tramp.el index 2aa62eba80e..38f07970a70 100644 --- a/lisp/net/tramp.el +++ b/lisp/net/tramp.el | |||
| @@ -606,7 +606,10 @@ The regexp should match at end of buffer." | |||
| 606 | 606 | ||
| 607 | (defcustom tramp-yesno-prompt-regexp | 607 | (defcustom tramp-yesno-prompt-regexp |
| 608 | (concat | 608 | (concat |
| 609 | (regexp-opt '("Are you sure you want to continue connecting (yes/no)?") t) | 609 | (regexp-opt |
| 610 | '("Are you sure you want to continue connecting (yes/no)?" | ||
| 611 | "Are you sure you want to continue connecting (yes/no/[fingerprint])?") | ||
| 612 | t) | ||
| 610 | "\\s-*") | 613 | "\\s-*") |
| 611 | "Regular expression matching all yes/no queries which need to be confirmed. | 614 | "Regular expression matching all yes/no queries which need to be confirmed. |
| 612 | The confirmation should be done with yes or no. | 615 | The confirmation should be done with yes or no. |