diff options
| author | Mattias EngdegÄrd | 2024-01-15 14:58:43 +0100 |
|---|---|---|
| committer | Mattias EngdegÄrd | 2024-01-16 20:34:43 +0100 |
| commit | f19f5604deb72c4d548702b2d9b8565805ffbca1 (patch) | |
| tree | 79368030e243c021522bbe66957f9fd51028a804 | |
| parent | dc404c5d0caac798627751bfd77ed005629abd4e (diff) | |
| download | emacs-f19f5604deb72c4d548702b2d9b8565805ffbca1.tar.gz emacs-f19f5604deb72c4d548702b2d9b8565805ffbca1.zip | |
Update pdumper hashes for buffer and Lisp_Hash_Table
* 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).
| -rw-r--r-- | src/pdumper.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/pdumper.c b/src/pdumper.c index 54f0f2bca13..4602931b63a 100644 --- a/src/pdumper.c +++ b/src/pdumper.c | |||
| @@ -2752,7 +2752,7 @@ dump_hash_table_contents (struct dump_context *ctx, struct Lisp_Hash_Table *h) | |||
| 2752 | static dump_off | 2752 | static dump_off |
| 2753 | dump_hash_table (struct dump_context *ctx, Lisp_Object object) | 2753 | dump_hash_table (struct dump_context *ctx, Lisp_Object object) |
| 2754 | { | 2754 | { |
| 2755 | #if CHECK_STRUCTS && !defined HASH_Lisp_Hash_Table_6D63EDB618 | 2755 | #if CHECK_STRUCTS && !defined HASH_Lisp_Hash_Table_313A489F0A |
| 2756 | # error "Lisp_Hash_Table changed. See CHECK_STRUCTS comment in config.h." | 2756 | # error "Lisp_Hash_Table changed. See CHECK_STRUCTS comment in config.h." |
| 2757 | #endif | 2757 | #endif |
| 2758 | const struct Lisp_Hash_Table *hash_in = XHASH_TABLE (object); | 2758 | const struct Lisp_Hash_Table *hash_in = XHASH_TABLE (object); |
| @@ -2784,7 +2784,7 @@ dump_hash_table (struct dump_context *ctx, Lisp_Object object) | |||
| 2784 | static dump_off | 2784 | static dump_off |
| 2785 | dump_buffer (struct dump_context *ctx, const struct buffer *in_buffer) | 2785 | dump_buffer (struct dump_context *ctx, const struct buffer *in_buffer) |
| 2786 | { | 2786 | { |
| 2787 | #if CHECK_STRUCTS && !defined HASH_buffer_EB0A5191C5 | 2787 | #if CHECK_STRUCTS && !defined HASH_buffer_EBBA38AEFA |
| 2788 | # error "buffer changed. See CHECK_STRUCTS comment in config.h." | 2788 | # error "buffer changed. See CHECK_STRUCTS comment in config.h." |
| 2789 | #endif | 2789 | #endif |
| 2790 | struct buffer munged_buffer = *in_buffer; | 2790 | struct buffer munged_buffer = *in_buffer; |