aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorStefan Monnier2019-01-21 15:03:28 -0500
committerStefan Monnier2019-01-21 15:03:28 -0500
commit657f6fe5008b1090b5670111b53624ecb2cacca0 (patch)
tree3410df4f4ff0d631bfe5674ae32b9128bf43422c /src
parent6896604babb4e9ac775751f9d012a95785948aae (diff)
downloademacs-657f6fe5008b1090b5670111b53624ecb2cacca0.tar.gz
emacs-657f6fe5008b1090b5670111b53624ecb2cacca0.zip
* src/pdumper.c (dump_string) [CHECK_STRUCTS]: Fix copy&paste error
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 4bbeabb828e..e57aa8f2a03 100644
--- a/src/pdumper.c
+++ b/src/pdumper.c
@@ -2111,7 +2111,7 @@ dump_interval_tree (struct dump_context *ctx,
2111static dump_off 2111static dump_off
2112dump_string (struct dump_context *ctx, const struct Lisp_String *string) 2112dump_string (struct dump_context *ctx, const struct Lisp_String *string)
2113{ 2113{
2114#if CHECK_STRUCTS && !defined (HASH_Lisp_Symbol_60EA1E748E) 2114#if CHECK_STRUCTS && !defined (HASH_Lisp_String_86FEA6EC7C)
2115# error "Lisp_String changed. See CHECK_STRUCTS comment." 2115# error "Lisp_String changed. See CHECK_STRUCTS comment."
2116#endif 2116#endif
2117 /* If we have text properties, write them _after_ the string so that 2117 /* If we have text properties, write them _after_ the string so that