diff options
| author | João Távora <joaotavora@gmail.com> | 2018-06-16 18:08:09 +0100 |
|---|---|---|
| committer | João Távora <joaotavora@gmail.com> | 2018-06-16 18:08:36 +0100 |
| commit | 9740768a757141a3f0bd95ed3970cbd24111e7bd (patch) | |
| tree | 85c425370d6835016d79446553dce5ff0f3da417 /lisp/progmodes/elisp-mode.el | |
| parent | ec1b4d9a51db61b77c3953f3de4339f34e512c42 (diff) | |
| download | emacs-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.el | 6 |
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'. |
