]> git.eshelyaron.com Git - emacs.git/commitdiff
* Better Vcomp_sym_subr_c_name_h test function + doc
authorAndrea Corallo <akrl@sdf.org>
Sun, 10 May 2020 15:04:48 +0000 (16:04 +0100)
committerAndrea Corallo <akrl@sdf.org>
Fri, 15 May 2020 19:06:49 +0000 (20:06 +0100)
* src/comp.c (syms_of_comp): 'Vcomp_sym_subr_c_name_h' need only
'eq' as test + fix doc for 'comp-sym-subr-c-name-h'.

src/comp.c

index 5ace2d28052c7d8b16ee080c4f19ff9540b6db28..3a362fd0957ec211897d2ee9297a3c485abea136 100644 (file)
@@ -3960,8 +3960,8 @@ syms_of_comp (void)
               doc: /* List of all defined subrs.  */);
   DEFVAR_LISP ("comp-sym-subr-c-name-h", Vcomp_sym_subr_c_name_h,
               doc: /* Hash table symbol-function -> function-c-name.  For
-                      internal use during  */);
-  Vcomp_sym_subr_c_name_h = CALLN (Fmake_hash_table);
+                      internal use during dump reload */);
+  Vcomp_sym_subr_c_name_h = CALLN (Fmake_hash_table, QCtest, Qeq);
   DEFVAR_LISP ("comp-abi-hash", Vcomp_abi_hash,
               doc: /* String signing the ABI exposed to .eln files.  */);
   Vcomp_abi_hash = Qnil;