aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorBasil L. Contovounesios2024-02-12 12:07:37 +0100
committerBasil L. Contovounesios2024-02-12 12:07:37 +0100
commit2f7d662dd4636a84e157a2af8f843c0589bc5dda (patch)
tree7099faa3e1f1bf99cb97fdfaed51b82cc6017a2a /src
parentbc6c55c5cf3fc5bd248232c6332ea7cca19ffe91 (diff)
downloademacs-2f7d662dd4636a84e157a2af8f843c0589bc5dda.tar.gz
emacs-2f7d662dd4636a84e157a2af8f843c0589bc5dda.zip
; Update Lisp_Hash_Table hash for CHECK_STRUCTS
This follows commit 05e3183ede of 2024-02-06 "Rearrange and pack hash table fields to reduce space".
Diffstat (limited to 'src')
-rw-r--r--src/pdumper.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/pdumper.c b/src/pdumper.c
index b8006b035ea..5c488d8e90f 100644
--- a/src/pdumper.c
+++ b/src/pdumper.c
@@ -2719,7 +2719,7 @@ dump_hash_table_contents (struct dump_context *ctx, struct Lisp_Hash_Table *h)
2719static dump_off 2719static dump_off
2720dump_hash_table (struct dump_context *ctx, Lisp_Object object) 2720dump_hash_table (struct dump_context *ctx, Lisp_Object object)
2721{ 2721{
2722#if CHECK_STRUCTS && !defined HASH_Lisp_Hash_Table_313A489F0A 2722#if CHECK_STRUCTS && !defined HASH_Lisp_Hash_Table_0360833954
2723# error "Lisp_Hash_Table changed. See CHECK_STRUCTS comment in config.h." 2723# error "Lisp_Hash_Table changed. See CHECK_STRUCTS comment in config.h."
2724#endif 2724#endif
2725 const struct Lisp_Hash_Table *hash_in = XHASH_TABLE (object); 2725 const struct Lisp_Hash_Table *hash_in = XHASH_TABLE (object);