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:
parent
ec1b4d9a51
commit
9740768a75
1 changed files with 3 additions and 3 deletions
|
@ -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'.
|
||||
|
|
Loading…
Add table
Reference in a new issue