1
Fork 0
mirror of git://git.sv.gnu.org/emacs.git synced 2026-04-21 05:21:37 -07:00

Don't use obsolete second argument to byte-compile-file

* test/src/comp-resources/comp-test-funcs.el
(comp-test-big-interactive): Don't use obsolete second argument to
byte-compile-file.
This commit is contained in:
Stefan Kangas 2022-01-27 04:15:13 +01:00
parent 8f9f1701f6
commit 5b931eb8ff

View file

@ -677,7 +677,7 @@
(progn
(if (and noninteractive (not byte-compile-verbose))
(message "Compiling %s..." filename))
(byte-compile-file filename load))
(byte-compile-file filename))
(when load
(load (if (file-exists-p dest) dest filename)))
'no-byte-compile)))