aboutsummaryrefslogtreecommitdiffstats
path: root/src/lisp.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/lisp.h')
-rw-r--r--src/lisp.h8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/lisp.h b/src/lisp.h
index c8ca4c49ec6..9f144c4c973 100644
--- a/src/lisp.h
+++ b/src/lisp.h
@@ -1026,16 +1026,16 @@ struct Lisp_Hash_Table
1026 hash table size to reduce collisions. */ 1026 hash table size to reduce collisions. */
1027 Lisp_Object index; 1027 Lisp_Object index;
1028 1028
1029 /* Next weak hash table if this is a weak hash table. The head
1030 of the list is in Vweak_hash_tables. */
1031 Lisp_Object next_weak;
1032
1033 /* User-supplied hash function, or nil. */ 1029 /* User-supplied hash function, or nil. */
1034 Lisp_Object user_hash_function; 1030 Lisp_Object user_hash_function;
1035 1031
1036 /* User-supplied key comparison function, or nil. */ 1032 /* User-supplied key comparison function, or nil. */
1037 Lisp_Object user_cmp_function; 1033 Lisp_Object user_cmp_function;
1038 1034
1035 /* Next weak hash table if this is a weak hash table. The head
1036 of the list is in weak_hash_tables. */
1037 struct Lisp_Hash_Table *next_weak;
1038
1039 /* C function to compare two keys. */ 1039 /* C function to compare two keys. */
1040 int (* cmpfn) P_ ((struct Lisp_Hash_Table *, Lisp_Object, 1040 int (* cmpfn) P_ ((struct Lisp_Hash_Table *, Lisp_Object,
1041 unsigned, Lisp_Object, unsigned)); 1041 unsigned, Lisp_Object, unsigned));