* lisp/emacs-lisp/comp.el (batch-byte+native-compile): Fix unwind form
This commit is contained in:
parent
e8c66036d1
commit
72a4cdaadc
1 changed files with 2 additions and 2 deletions
|
@ -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
|
||||
|
|
Loading…
Add table
Reference in a new issue