]> git.eshelyaron.com Git - emacs.git/commitdiff
Fix bug in elisp-flymake-byte-compile
authorJoão Távora <joaotavora@gmail.com>
Sat, 16 Jun 2018 17:08:09 +0000 (18:08 +0100)
committerJoão Távora <joaotavora@gmail.com>
Sat, 16 Jun 2018 17:08:36 +0000 (18:08 +0100)
* lisp/progmodes/elisp-mode.el (elisp-flymake-byte-compile): Pass
keyword args to make-process.

lisp/progmodes/elisp-mode.el

index 935e55c5d708236203c5c5fd1a86de2fe3ac7871..d74c523c8c86f3c1ad191be286d656f91941a3ac 100644 (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'.