branch: elpa/magit
commit 0cce8f7a94f4f4ae4fd85ba2702658d567ecea24
Author: Jonas Bernoulli <[email protected]>
Commit: Jonas Bernoulli <[email protected]>
magit-process-yes-or-no-prompt-regexp: eval-when-compile value
---
lisp/magit-process.el | 15 ++++++++-------
1 file changed, 8 insertions(+), 7 deletions(-)
diff --git a/lisp/magit-process.el b/lisp/magit-process.el
index 408ccef77df..7c850672ef5 100644
--- a/lisp/magit-process.el
+++ b/lisp/magit-process.el
@@ -145,13 +145,14 @@ itself from the hook, to avoid further futile attempts."
(const :tag "Don't start a cache daemon" nil)))
(defcustom magit-process-yes-or-no-prompt-regexp
- (concat " [([]"
- "\\([Yy]\\(?:es\\)?\\)"
- "[/|]"
- "\\([Nn]o?\\)"
- ;; OpenSSH v8 prints this. See #3969.
- "\\(?:/\\[fingerprint\\]\\)?"
- "[])] ?[?:]? ?$")
+ (eval-when-compile
+ (concat " [([]"
+ "\\([Yy]\\(?:es\\)?\\)"
+ "[/|]"
+ "\\([Nn]o?\\)"
+ ;; OpenSSH v8 prints this. See #3969.
+ "\\(?:/\\[fingerprint\\]\\)?"
+ "[])] ?[?:]? ?$"))
"Regexp matching Yes-or-No prompts of Git and its subprocesses."
:package-version '(magit . "2.1.0")
:group 'magit-process