aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorPhilipp Stephani2020-02-29 21:12:18 +0100
committerPhilipp Stephani2020-02-29 21:12:18 +0100
commit3d2c82ac96a7f37e60b2b85a5c9c1d792084ab54 (patch)
tree23f302407b4c2c43657849758f0d3e48f75620f7 /src
parent8ab0e7316ab7e3465904b21ad168e5a9190a6a68 (diff)
downloademacs-3d2c82ac96a7f37e60b2b85a5c9c1d792084ab54.tar.gz
emacs-3d2c82ac96a7f37e60b2b85a5c9c1d792084ab54.zip
Unbreak build with CHECK_STRUCTS
* src/pdumper.c (dump_object): Fix hash for Lisp_Type after commit 202c3319a28c029d6971dccea92f92425c5e8067.
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 0039f1a9ed8..4d81203f46f 100644
--- a/src/pdumper.c
+++ b/src/pdumper.c
@@ -3069,7 +3069,7 @@ dump_vectorlike (struct dump_context *ctx,
3069static dump_off 3069static dump_off
3070dump_object (struct dump_context *ctx, Lisp_Object object) 3070dump_object (struct dump_context *ctx, Lisp_Object object)
3071{ 3071{
3072#if CHECK_STRUCTS && !defined (HASH_Lisp_Type_E2AD97D3F7) 3072#if CHECK_STRUCTS && !defined (HASH_Lisp_Type_45F0582FD7)
3073# error "Lisp_Type changed. See CHECK_STRUCTS comment in config.h." 3073# error "Lisp_Type changed. See CHECK_STRUCTS comment in config.h."
3074#endif 3074#endif
3075 eassert (!EQ (object, dead_object ())); 3075 eassert (!EQ (object, dead_object ()));