From: João Távora Date: Sat, 16 Jun 2018 17:08:09 +0000 (+0100) Subject: Fix bug in elisp-flymake-byte-compile X-Git-Tag: emacs-27.0.90~4833 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=9740768a757141a3f0bd95ed3970cbd24111e7bd;p=emacs.git Fix bug in elisp-flymake-byte-compile * lisp/progmodes/elisp-mode.el (elisp-flymake-byte-compile): Pass keyword args to make-process. --- diff --git a/lisp/progmodes/elisp-mode.el b/lisp/progmodes/elisp-mode.el index 935e55c5d70..d74c523c8c8 100644 --- a/lisp/progmodes/elisp-mode.el +++ b/lisp/progmodes/elisp-mode.el @@ -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'.