aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorLiāu, Kiong-Gē 廖宮毅2020-12-22 20:02:50 +0100
committerAndrea Corallo2020-12-22 21:06:16 +0100
commit433ae7b0a5cedbcd7b0a1daf12846e38f00fd111 (patch)
tree70509a30988b79f66ca5cad8b6932dbcd333b0e7 /src
parent9676e4d7766cea647a4e2b9e27fad97479b418de (diff)
downloademacs-433ae7b0a5cedbcd7b0a1daf12846e38f00fd111.tar.gz
emacs-433ae7b0a5cedbcd7b0a1daf12846e38f00fd111.zip
Fix --with-nativecomp Windows build (bug#45303)
Liāu, Kiong-Gē 廖宮毅 <gongyi.liao@gmail.com> * src/comp.c (eln_load_path_final_clean_up): Fix argument order. * nt/mingw-cfg.site (ac_cv_func_strsignal): Force `ac_cv_func_strsignal' to no. Copyright-paperwork-exempt: yes
Diffstat (limited to 'src')
-rw-r--r--src/comp.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/comp.c b/src/comp.c
index 70f61bfbe1d..166c75bea0d 100644
--- a/src/comp.c
+++ b/src/comp.c
@@ -4534,7 +4534,7 @@ eln_load_path_final_clean_up (void)
4534 concat2 (XCAR (dir_tail), 4534 concat2 (XCAR (dir_tail),
4535 Vcomp_native_version_dir), 4535 Vcomp_native_version_dir),
4536 Qt, build_string ("\\.eln\\.old\\'"), Qnil, 4536 Qt, build_string ("\\.eln\\.old\\'"), Qnil,
4537 Qt, Qnil, return_nil); 4537 Qnil, Qt, return_nil);
4538 FOR_EACH_TAIL (files_in_dir) 4538 FOR_EACH_TAIL (files_in_dir)
4539 Fdelete_file (XCAR (files_in_dir), Qnil); 4539 Fdelete_file (XCAR (files_in_dir), Qnil);
4540 } 4540 }