summaryrefslogtreecommitdiff
path: root/lisp/progmodes/elisp-mode.el
diff options
context:
space:
mode:
authorJoão Távora <joaotavora@gmail.com>2018-06-16 18:08:09 +0100
committerJoão Távora <joaotavora@gmail.com>2018-06-16 18:08:36 +0100
commit9740768a757141a3f0bd95ed3970cbd24111e7bd (patch)
tree85c425370d6835016d79446553dce5ff0f3da417 /lisp/progmodes/elisp-mode.el
parentec1b4d9a51db61b77c3953f3de4339f34e512c42 (diff)
downloademacs-9740768a757141a3f0bd95ed3970cbd24111e7bd.tar.gz
Fix bug in elisp-flymake-byte-compile
* lisp/progmodes/elisp-mode.el (elisp-flymake-byte-compile): Pass keyword args to make-process.
Diffstat (limited to 'lisp/progmodes/elisp-mode.el')
-rw-r--r--lisp/progmodes/elisp-mode.el6
1 files changed, 3 insertions, 3 deletions
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'.