From: Stefan Kangas Date: Thu, 27 Jan 2022 03:15:13 +0000 (+0100) Subject: Don't use obsolete second argument to byte-compile-file X-Git-Tag: emacs-29.0.90~2721 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=5b931eb8ff088891c73a9c952f19e20ccd7e2dae;p=emacs.git 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. --- 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)))