diff options
| author | Stefan Kangas | 2022-01-27 04:15:13 +0100 |
|---|---|---|
| committer | Stefan Kangas | 2022-01-27 04:15:13 +0100 |
| commit | 5b931eb8ff088891c73a9c952f19e20ccd7e2dae (patch) | |
| tree | df543996eb10bc2aeb307eb62ea0626a11a62661 /test/src | |
| parent | 8f9f1701f632ed72f511fb66bf14417b63524e9a (diff) | |
| download | emacs-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.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 @@ | |||
| 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))) |