1
Fork 0
mirror of git://git.sv.gnu.org/emacs.git synced 2026-01-06 03:40:56 -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 (call-process (expand-file-name invocation-name
invocation-directory) invocation-directory)
nil t t "--batch" "-l" temp-file)) nil t t "--batch" "-l" temp-file))
output (progn
(delete-file temp-file)
output)
(signal 'native-compiler-error (buffer-string))) (signal 'native-compiler-error (buffer-string)))
(comp-log-to-buffer (buffer-string)))))))) (comp-log-to-buffer (buffer-string))))))))