diff options
| author | Philipp Stephani | 2020-05-31 19:50:04 +0200 |
|---|---|---|
| committer | Philipp Stephani | 2020-05-31 19:50:04 +0200 |
| commit | 43caa9680b0d000014b4b9004389b7b193a51629 (patch) | |
| tree | e527af54f9c96e824b11ef048269d6a5cc7c51a3 | |
| parent | f56830acbfac8ddedafbabc9be379cd197c9d65b (diff) | |
| download | emacs-43caa9680b0d000014b4b9004389b7b193a51629.tar.gz emacs-43caa9680b0d000014b4b9004389b7b193a51629.zip | |
Unbreak compilation with CHECK_STRUCTS defined.
* src/pdumper.c (dump_float): Update hash value after commit
9f7bfb6cb06f1480a0904184cabf187e03628e55. The struct layout is still
compatible.
| -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 bac6900cd1a..7f6876666be 100644 --- a/src/pdumper.c +++ b/src/pdumper.c | |||
| @@ -2239,7 +2239,7 @@ dump_bignum (struct dump_context *ctx, Lisp_Object object) | |||
| 2239 | static dump_off | 2239 | static dump_off |
| 2240 | dump_float (struct dump_context *ctx, const struct Lisp_Float *lfloat) | 2240 | dump_float (struct dump_context *ctx, const struct Lisp_Float *lfloat) |
| 2241 | { | 2241 | { |
| 2242 | #if CHECK_STRUCTS && !defined (HASH_Lisp_Float_50A7B216D9) | 2242 | #if CHECK_STRUCTS && !defined (HASH_Lisp_Float_7E7D284C02) |
| 2243 | # error "Lisp_Float changed. See CHECK_STRUCTS comment in config.h." | 2243 | # error "Lisp_Float changed. See CHECK_STRUCTS comment in config.h." |
| 2244 | #endif | 2244 | #endif |
| 2245 | eassert (ctx->header.cold_start); | 2245 | eassert (ctx->header.cold_start); |