diff options
| author | Basil L. Contovounesios | 2021-01-04 13:09:40 +0000 |
|---|---|---|
| committer | Basil L. Contovounesios | 2021-01-04 13:15:15 +0000 |
| commit | 56556b5f4d73d9c3683fa7573e6bd89f2ef37902 (patch) | |
| tree | 4a27e2be7c04d0fb81afb869426f6b4bd40735a8 /src | |
| parent | 4e80eb7b7ce76e02fa0b2b0fa66223f29e3f6bcd (diff) | |
| download | emacs-56556b5f4d73d9c3683fa7573e6bd89f2ef37902.tar.gz emacs-56556b5f4d73d9c3683fa7573e6bd89f2ef37902.zip | |
Fix build for --enable-checking=structs
The last change to lisp.h only added comments in Lisp_String, so the
portable dumper need not be changed.
* src/pdumper.c (dump_string): Update hash for Lisp_String.
Diffstat (limited to 'src')
| -rw-r--r-- | src/pdumper.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/pdumper.c b/src/pdumper.c index 6956ee36829..116cc28dbba 100644 --- a/src/pdumper.c +++ b/src/pdumper.c | |||
| @@ -2058,7 +2058,7 @@ dump_interval_tree (struct dump_context *ctx, | |||
| 2058 | static dump_off | 2058 | static dump_off |
| 2059 | dump_string (struct dump_context *ctx, const struct Lisp_String *string) | 2059 | dump_string (struct dump_context *ctx, const struct Lisp_String *string) |
| 2060 | { | 2060 | { |
| 2061 | #if CHECK_STRUCTS && !defined (HASH_Lisp_String_86FEA6EC7C) | 2061 | #if CHECK_STRUCTS && !defined (HASH_Lisp_String_348C2B2FDB) |
| 2062 | # error "Lisp_String changed. See CHECK_STRUCTS comment in config.h." | 2062 | # error "Lisp_String changed. See CHECK_STRUCTS comment in config.h." |
| 2063 | #endif | 2063 | #endif |
| 2064 | /* If we have text properties, write them _after_ the string so that | 2064 | /* If we have text properties, write them _after_ the string so that |