emacs-diffs
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[Emacs-diffs] master 9740768: Fix bug in elisp-flymake-byte-compile


From: João Távora
Subject: [Emacs-diffs] master 9740768: Fix bug in elisp-flymake-byte-compile
Date: Sat, 16 Jun 2018 13:08:43 -0400 (EDT)

branch: master
commit 9740768a757141a3f0bd95ed3970cbd24111e7bd
Author: João Távora <address@hidden>
Commit: João Távora <address@hidden>

    Fix bug in elisp-flymake-byte-compile
    
    * lisp/progmodes/elisp-mode.el (elisp-flymake-byte-compile): Pass
    keyword args to make-process.
---
 lisp/progmodes/elisp-mode.el | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/lisp/progmodes/elisp-mode.el b/lisp/progmodes/elisp-mode.el
index 935e55c..d74c523 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'.



reply via email to

[Prev in Thread] Current Thread [Next in Thread]