diff options
author | Stefan Kangas <stefan@marxist.se> | 2022-01-27 04:15:13 +0100 |
---|---|---|
committer | Stefan Kangas <stefan@marxist.se> | 2022-01-27 04:15:13 +0100 |
commit | 5b931eb8ff088891c73a9c952f19e20ccd7e2dae (patch) | |
tree | df543996eb10bc2aeb307eb62ea0626a11a62661 /test/src/comp-resources/comp-test-funcs.el | |
parent | 8f9f1701f632ed72f511fb66bf14417b63524e9a (diff) | |
download | emacs-5b931eb8ff088891c73a9c952f19e20ccd7e2dae.tar.gz emacs-5b931eb8ff088891c73a9c952f19e20ccd7e2dae.tar.bz2 emacs-5b931eb8ff088891c73a9c952f19e20ccd7e2dae.zip |
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.
Diffstat (limited to 'test/src/comp-resources/comp-test-funcs.el')
-rw-r--r-- | test/src/comp-resources/comp-test-funcs.el | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/src/comp-resources/comp-test-funcs.el b/test/src/comp-resources/comp-test-funcs.el index d740a5f8107..b3fd2bcd175 100644 --- a/test/src/comp-resources/comp-test-funcs.el +++ b/test/src/comp-resources/comp-test-funcs.el @@ -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))) |