aboutsummaryrefslogtreecommitdiffstats
path: root/test/src
diff options
context:
space:
mode:
authorStefan Kangas2022-01-27 04:15:13 +0100
committerStefan Kangas2022-01-27 04:15:13 +0100
commit5b931eb8ff088891c73a9c952f19e20ccd7e2dae (patch)
treedf543996eb10bc2aeb307eb62ea0626a11a62661 /test/src
parent8f9f1701f632ed72f511fb66bf14417b63524e9a (diff)
downloademacs-5b931eb8ff088891c73a9c952f19e20ccd7e2dae.tar.gz
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')
-rw-r--r--test/src/comp-resources/comp-test-funcs.el2
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 @@
677 (progn 677 (progn
678 (if (and noninteractive (not byte-compile-verbose)) 678 (if (and noninteractive (not byte-compile-verbose))
679 (message "Compiling %s..." filename)) 679 (message "Compiling %s..." filename))
680 (byte-compile-file filename load)) 680 (byte-compile-file filename))
681 (when load 681 (when load
682 (load (if (file-exists-p dest) dest filename))) 682 (load (if (file-exists-p dest) dest filename)))
683 'no-byte-compile))) 683 'no-byte-compile)))