We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 0683e96 + 9a009d7 commit f1eb1c1Copy full SHA for f1eb1c1
coq/coq-system.el
@@ -59,9 +59,9 @@ On Windows you might need something like:
59
"return non nil if the detected coq/rocq executable obeys the rocq CLI."
60
(let* ((coq-command (or proof-prog-name (coq-autodetect-progname))))
61
(condition-case nil
62
- (with-temp-buffer
63
- (apply 'process-file (list coq-command nil t))
64
- (string-match "Supported subcommands:" (buffer-string)))
+ (string-match
+ "Supported subcommands:"
+ (with-output-to-string (process-file coq-command nil standard-output)))
65
(error nil))))
66
67
(defun coq-detect-coqdep ()
0 commit comments