From 2526032ea954671aa48a6ad6d924df2941a8364a Mon Sep 17 00:00:00 2001 From: Andrea Corallo Date: Mon, 21 Dec 2020 08:45:53 +0100 Subject: [PATCH] * src/comp.c (eln_load_path_final_clean_up): Fix call arg order (bug#45303). --- src/comp.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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); } -- 2.39.5