summaryrefslogtreecommitdiff
path: root/lisp/emacs-lisp/comp.el
diff options
context:
space:
mode:
authorAndrea Corallo <akrl@sdf.org>2022-01-24 15:29:38 +0100
committerAndrea Corallo <akrl@sdf.org>2022-01-25 17:47:34 +0100
commit72a4cdaadcf388f5a870a70a208ad7f04bf35d16 (patch)
treebfa04ba71d6386e90d4d0d13c4bd7a7e30cf5c7c /lisp/emacs-lisp/comp.el
parente8c66036d155adba9a75fb8304c241b55512c93c (diff)
downloademacs-72a4cdaadcf388f5a870a70a208ad7f04bf35d16.tar.gz
* lisp/emacs-lisp/comp.el (batch-byte+native-compile): Fix unwind form
Diffstat (limited to 'lisp/emacs-lisp/comp.el')
-rw-r--r--lisp/emacs-lisp/comp.el4
1 files changed, 2 insertions, 2 deletions
diff --git a/lisp/emacs-lisp/comp.el b/lisp/emacs-lisp/comp.el
index 3c61063a3cb..71914b2f2b7 100644
--- a/lisp/emacs-lisp/comp.el
+++ b/lisp/emacs-lisp/comp.el
@@ -4217,8 +4217,8 @@ variable 'NATIVE_DISABLED' is set, only byte compile."
(pcase byte-to-native-output-buffer-file
(`(,temp-buffer . ,target-file)
(unwind-protect
- (byte-write-target-file temp-buffer target-file))
- (kill-buffer temp-buffer)))
+ (byte-write-target-file temp-buffer target-file)
+ (kill-buffer temp-buffer))))
(setq command-line-args-left (cdr command-line-args-left)))))
;;;###autoload