]> git.eshelyaron.com Git - emacs.git/commitdiff
Update pdumper hashes for buffer and Lisp_Hash_Table
authorMattias Engdegård <mattiase@acm.org>
Mon, 15 Jan 2024 13:58:43 +0000 (14:58 +0100)
committerMattias Engdegård <mattiase@acm.org>
Tue, 16 Jan 2024 19:34:43 +0000 (20:34 +0100)
* src/pdumper.c (dump_hash_table): Update for changes in recent
hash-table patch suites (bug#68244).
(dump_buffer): Update for case-fold-search changes (bug#66117).

src/pdumper.c

index 54f0f2bca1331dc1087f49bd027dd9eb8abbd568..4602931b63ad189a47fdcacd4735f0f871e8e590 100644 (file)
@@ -2752,7 +2752,7 @@ dump_hash_table_contents (struct dump_context *ctx, struct Lisp_Hash_Table *h)
 static dump_off
 dump_hash_table (struct dump_context *ctx, Lisp_Object object)
 {
-#if CHECK_STRUCTS && !defined HASH_Lisp_Hash_Table_6D63EDB618
+#if CHECK_STRUCTS && !defined HASH_Lisp_Hash_Table_313A489F0A
 # error "Lisp_Hash_Table changed. See CHECK_STRUCTS comment in config.h."
 #endif
   const struct Lisp_Hash_Table *hash_in = XHASH_TABLE (object);
@@ -2784,7 +2784,7 @@ dump_hash_table (struct dump_context *ctx, Lisp_Object object)
 static dump_off
 dump_buffer (struct dump_context *ctx, const struct buffer *in_buffer)
 {
-#if CHECK_STRUCTS && !defined HASH_buffer_EB0A5191C5
+#if CHECK_STRUCTS && !defined HASH_buffer_EBBA38AEFA
 # error "buffer changed. See CHECK_STRUCTS comment in config.h."
 #endif
   struct buffer munged_buffer = *in_buffer;