diff options
author | Andrea Corallo <akrl@sdf.org> | 2019-09-08 10:11:36 +0200 |
---|---|---|
committer | Andrea Corallo <akrl@sdf.org> | 2020-01-01 11:37:45 +0100 |
commit | 06ad74581385cd1930a073b2fda314230b254608 (patch) | |
tree | 22a4e76a5217e35006a9668c08ce84680320a3b9 /src/lread.c | |
parent | 17259826f263f87d45eb98c8effe0ba7ee774f5d (diff) | |
download | emacs-06ad74581385cd1930a073b2fda314230b254608.tar.gz emacs-06ad74581385cd1930a073b2fda314230b254608.tar.bz2 emacs-06ad74581385cd1930a073b2fda314230b254608.zip |
rename HAVE_LIBGCCJIT -> HAVE_NATIVE_COMP
Diffstat (limited to 'src/lread.c')
-rw-r--r-- | src/lread.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/lread.c b/src/lread.c index b10743f980c..f1b17edd011 100644 --- a/src/lread.c +++ b/src/lread.c @@ -1281,7 +1281,7 @@ Return t if the file exists and loads successfully. */) bool is_module = false; #endif -#ifdef HAVE_LIBGCCJIT +#ifdef HAVE_NATIVE_COMP bool is_native_elisp = suffix_p (found, NATIVE_ELISP_SUFFIX); #else bool is_native_elisp = false; @@ -1486,7 +1486,7 @@ Return t if the file exists and loads successfully. */) } else if (is_native_elisp) { -#ifdef HAVE_LIBGCCJIT +#ifdef HAVE_NATIVE_COMP specbind (Qcurrent_load_list, Qnil); LOADHIST_ATTACH (found); Fnative_elisp_load (found); @@ -4896,7 +4896,7 @@ to the specified file name if a suffix is allowed or required. */); Fcons (build_pure_c_string (MODULES_SECONDARY_SUFFIX), Vload_suffixes); #endif #endif -#ifdef HAVE_LIBGCCJIT +#ifdef HAVE_NATIVE_COMP Vload_suffixes = Fcons (build_pure_c_string (NATIVE_ELISP_SUFFIX), Vload_suffixes); #endif |