aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorEli Zaretskii2021-03-07 12:53:51 +0200
committerEli Zaretskii2021-03-07 12:53:51 +0200
commit99638d128ee07fa35525ac47217f68dd518e9175 (patch)
treebb15f6b6a9fd14e9a72ce49d61d67fc14931e1ff /src
parent7a13a0d616cde9f0f2a6fe217144e9891e769b61 (diff)
downloademacs-99638d128ee07fa35525ac47217f68dd518e9175.tar.gz
emacs-99638d128ee07fa35525ac47217f68dd518e9175.zip
; * src/comp.c (Fcomp__compile_ctxt_to_file) [WINDOWSNT]: Fix last change.
Diffstat (limited to 'src')
-rw-r--r--src/comp.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/comp.c b/src/comp.c
index d9ad623ec79..7927448d5f0 100644
--- a/src/comp.c
+++ b/src/comp.c
@@ -4385,6 +4385,7 @@ DEFUN ("comp--compile-ctxt-to-file", Fcomp__compile_ctxt_to_file,
4385 libgccjit_fname = XCAR (libgccjit_loaded_from); 4385 libgccjit_fname = XCAR (libgccjit_loaded_from);
4386 /* Must encode to ANSI, as libgccjit will not be able to handle 4386 /* Must encode to ANSI, as libgccjit will not be able to handle
4387 UTF-8 encoded file names. */ 4387 UTF-8 encoded file names. */
4388 libgccjit_fname = ENCODE_FILE (libgccjit_fname);
4388 libgccjit_fname = ansi_encode_filename (libgccjit_fname); 4389 libgccjit_fname = ansi_encode_filename (libgccjit_fname);
4389 gcc_jit_context_set_str_option (comp.ctxt, GCC_JIT_STR_OPTION_PROGNAME, 4390 gcc_jit_context_set_str_option (comp.ctxt, GCC_JIT_STR_OPTION_PROGNAME,
4390 SSDATA (libgccjit_fname)); 4391 SSDATA (libgccjit_fname));