From: Andrea Corallo Date: Mon, 21 Dec 2020 07:45:53 +0000 (+0100) Subject: * src/comp.c (eln_load_path_final_clean_up): Fix call arg order (bug#45303). X-Git-Tag: emacs-28.0.90~2727^2~256 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=2526032ea954671aa48a6ad6d924df2941a8364a;p=emacs.git * src/comp.c (eln_load_path_final_clean_up): Fix call arg order (bug#45303). --- diff --git a/src/comp.c b/src/comp.c index 84a80eba11e..8907993dc56 100644 --- a/src/comp.c +++ b/src/comp.c @@ -4622,7 +4622,7 @@ eln_load_path_final_clean_up (void) concat2 (XCAR (dir_tail), Vcomp_native_version_dir), Qt, build_string ("\\.eln\\.old\\'"), Qnil, - Qt, return_nil, Qnil); + Qt, Qnil, return_nil); FOR_EACH_TAIL (files_in_dir) Fdelete_file (XCAR (files_in_dir), Qnil); }