diff options
author | Andrea Corallo <akrl@sdf.org> | 2022-01-24 15:29:38 +0100 |
---|---|---|
committer | Andrea Corallo <akrl@sdf.org> | 2022-01-25 17:47:34 +0100 |
commit | 72a4cdaadcf388f5a870a70a208ad7f04bf35d16 (patch) | |
tree | bfa04ba71d6386e90d4d0d13c4bd7a7e30cf5c7c /lisp/emacs-lisp | |
parent | e8c66036d155adba9a75fb8304c241b55512c93c (diff) | |
download | emacs-72a4cdaadcf388f5a870a70a208ad7f04bf35d16.tar.gz emacs-72a4cdaadcf388f5a870a70a208ad7f04bf35d16.tar.bz2 emacs-72a4cdaadcf388f5a870a70a208ad7f04bf35d16.zip |
* lisp/emacs-lisp/comp.el (batch-byte+native-compile): Fix unwind form
Diffstat (limited to 'lisp/emacs-lisp')
-rw-r--r-- | lisp/emacs-lisp/comp.el | 4 |
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 |