projects
/
emacs.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
ec1b4d9
)
Fix bug in elisp-flymake-byte-compile
author
João Távora
<joaotavora@gmail.com>
Sat, 16 Jun 2018 17:08:09 +0000
(18:08 +0100)
committer
Joã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
patch
|
blob
|
history
diff --git
a/lisp/progmodes/elisp-mode.el
b/lisp/progmodes/elisp-mode.el
index 935e55c5d708236203c5c5fd1a86de2fe3ac7871..d74c523c8c86f3c1ad191be286d656f91941a3ac 100644
(file)
--- 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'.