diff options
Diffstat (limited to 'src/comp.c')
| -rw-r--r-- | src/comp.c | 8 |
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. | ||
| 5915 | This is in case they are redefined so the compiler still knows how to | ||
| 5916 | compile calls to them. | ||
| 5917 | subr-name -> arity | ||
| 5918 | For 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 | ||