aboutsummaryrefslogtreecommitdiffstats
path: root/src/comp.c
diff options
context:
space:
mode:
authorPo Lu2023-04-03 08:12:03 +0800
committerPo Lu2023-04-03 08:12:03 +0800
commit8bca62d552a3ca5dc262f916055d9d443d360af8 (patch)
treebce57bc68ebf8f3490d5fee6b986b245ae594649 /src/comp.c
parent1d84b4b28659b5f2cc60872ce095e3887bed6fdd (diff)
parentc108132d3bb69d0cc8d2e0222a781dff9abca087 (diff)
downloademacs-8bca62d552a3ca5dc262f916055d9d443d360af8.tar.gz
emacs-8bca62d552a3ca5dc262f916055d9d443d360af8.zip
Merge remote-tracking branch 'origin/master' into feature/android
Diffstat (limited to 'src/comp.c')
-rw-r--r--src/comp.c8
1 files changed, 8 insertions, 0 deletions
diff --git a/src/comp.c b/src/comp.c
index 5cbe441dd7f..9ff3efedbdd 100644
--- a/src/comp.c
+++ b/src/comp.c
@@ -5910,6 +5910,14 @@ For internal use. */);
5910 Vcomp_loaded_comp_units_h = 5910 Vcomp_loaded_comp_units_h =
5911 CALLN (Fmake_hash_table, QCweakness, Qvalue, QCtest, Qequal); 5911 CALLN (Fmake_hash_table, QCweakness, Qvalue, QCtest, Qequal);
5912 5912
5913 DEFVAR_LISP ("comp-subr-arities-h", Vcomp_subr_arities_h,
5914 doc: /* Hash table recording the arity of Lisp primitives.
5915This is in case they are redefined so the compiler still knows how to
5916compile calls to them.
5917subr-name -> arity
5918For internal use. */);
5919 Vcomp_subr_arities_h = CALLN (Fmake_hash_table, QCtest, Qequal);
5920
5913 Fprovide (intern_c_string ("native-compile"), Qnil); 5921 Fprovide (intern_c_string ("native-compile"), Qnil);
5914#endif /* #ifdef HAVE_NATIVE_COMP */ 5922#endif /* #ifdef HAVE_NATIVE_COMP */
5915 5923