aboutsummaryrefslogtreecommitdiffstats
path: root/src/comp.c
diff options
context:
space:
mode:
authorAndrea Corallo2021-04-04 22:45:36 +0200
committerAndrea Corallo2021-04-04 22:51:24 +0200
commit39bc9bc77066c0c40d2e5fd0769ce3701055a10b (patch)
tree1eafef2a54a1da57571503ddef9a6e23e14179fe /src/comp.c
parent9333bc48638127899dddc7796afd2df80441f494 (diff)
downloademacs-39bc9bc77066c0c40d2e5fd0769ce3701055a10b.tar.gz
emacs-39bc9bc77066c0c40d2e5fd0769ce3701055a10b.zip
* src/comp.c (fixup_eln_load_path): Fix parameter name.
Diffstat (limited to 'src/comp.c')
-rw-r--r--src/comp.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/comp.c b/src/comp.c
index c167aaa9444..6817fe2f92e 100644
--- a/src/comp.c
+++ b/src/comp.c
@@ -4750,7 +4750,7 @@ maybe_defer_native_compilation (Lisp_Object function_name,
4750/* Fixup the system eln-cache dir. This is the last entry in 4750/* Fixup the system eln-cache dir. This is the last entry in
4751 `comp-eln-load-path'. */ 4751 `comp-eln-load-path'. */
4752void 4752void
4753fixup_eln_load_path (Lisp_Object directory) 4753fixup_eln_load_path (Lisp_Object eln_filename)
4754{ 4754{
4755 Lisp_Object last_cell = Qnil; 4755 Lisp_Object last_cell = Qnil;
4756 Lisp_Object tmp = Vcomp_eln_load_path; 4756 Lisp_Object tmp = Vcomp_eln_load_path;
@@ -4760,7 +4760,7 @@ fixup_eln_load_path (Lisp_Object directory)
4760 4760
4761 Lisp_Object eln_cache_sys = 4761 Lisp_Object eln_cache_sys =
4762 Ffile_name_directory (concat2 (Vinvocation_directory, 4762 Ffile_name_directory (concat2 (Vinvocation_directory,
4763 directory)); 4763 eln_filename));
4764 bool preloaded = 4764 bool preloaded =
4765 !NILP (Fequal (Fsubstring (eln_cache_sys, make_fixnum (-10), 4765 !NILP (Fequal (Fsubstring (eln_cache_sys, make_fixnum (-10),
4766 make_fixnum (-1)), 4766 make_fixnum (-1)),