Fix bug in elisp-flymake-byte-compile

* lisp/progmodes/elisp-mode.el (elisp-flymake-byte-compile): Pass
keyword args to make-process.
This commit is contained in:
João Távora 2018-06-16 18:08:09 +01:00
parent ec1b4d9a51
commit 9740768a75

View file

@ -1716,9 +1716,9 @@ current buffer state and calls REPORT-FN when done."
:explanation
(format "byte-compile process %s died" proc))))
(ignore-errors (delete-file temp-file))
(kill-buffer output-buffer))))))
:stderr null-device
:noquery t)))
(kill-buffer output-buffer))))
:stderr null-device
:noquery t)))))
(defun elisp-flymake--batch-compile-for-flymake (&optional file)
"Helper for `elisp-flymake-byte-compile'.