From: Andrea Corallo Date: Sun, 6 Sep 2020 16:20:00 +0000 (+0200) Subject: * src/comp.c (Fcomp__compile_ctxt_to_file): Rename a variable. X-Git-Tag: emacs-28.0.90~2727^2~458 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=3a9139d197ea1a211b64ca70e1f7e1f0545a4424;p=emacs.git * src/comp.c (Fcomp__compile_ctxt_to_file): Rename a variable. --- diff --git a/src/comp.c b/src/comp.c index ddecacd74e7..70bb560da63 100644 --- a/src/comp.c +++ b/src/comp.c @@ -4353,10 +4353,10 @@ DEFUN ("comp--compile-ctxt-to-file", Fcomp__compile_ctxt_to_file, if (COMP_DEBUG > 2) gcc_jit_context_dump_reproducer_to_file (comp.ctxt, "comp_reproducer.c"); - AUTO_STRING (dot_so, NATIVE_ELISP_SUFFIX); + AUTO_STRING (dot_eln, NATIVE_ELISP_SUFFIX); Lisp_Object tmp_file = - Fmake_temp_file_internal (base_name, Qnil, dot_so, Qnil); + Fmake_temp_file_internal (base_name, Qnil, dot_eln, Qnil); gcc_jit_context_compile_to_file (comp.ctxt, GCC_JIT_OUTPUT_KIND_DYNAMIC_LIBRARY, SSDATA (tmp_file));