1
Fork 0
mirror of git://git.sv.gnu.org/emacs.git synced 2025-12-06 06:20:55 -08:00

* lisp/emacs-lisp/comp.el (comp-final): Clean-up temporary file.

This commit is contained in:
Andrea Corallo 2021-03-31 20:29:32 +02:00
parent 53ca0d9844
commit 8e524f4591

View file

@ -3666,7 +3666,9 @@ Prepare every function for final compilation and drive the C back-end."
(call-process (expand-file-name invocation-name
invocation-directory)
nil t t "--batch" "-l" temp-file))
output
(progn
(delete-file temp-file)
output)
(signal 'native-compiler-error (buffer-string)))
(comp-log-to-buffer (buffer-string))))))))