]> git.eshelyaron.com Git - emacs.git/commitdiff
Fix typo in pdumper.c
authorPip Cet <pipcet@protonmail.com>
Mon, 5 Aug 2024 21:47:57 +0000 (21:47 +0000)
committerEshel Yaron <me@eshelyaron.com>
Tue, 6 Aug 2024 09:55:48 +0000 (11:55 +0200)
* src/pdumper.c (dump_interval_node): Call 'dump_field_fixup_later' with
the correct arguments.  Discovered by Danny McClanahan.

(cherry picked from commit e7109dfd9c15312d20582efdde8c929c9a65282a)

src/pdumper.c

index 53bddf91f04ce873a9b03c5e43bd4a889ba73916..0b8dab3a7346a6e314c17990f0cd8821e41bdc00 100644 (file)
@@ -2136,9 +2136,9 @@ dump_interval_node (struct dump_context *ctx, struct itree_node *node)
   if (node->parent)
     dump_field_fixup_later (ctx, &out, node, &node->parent);
   if (node->left)
-    dump_field_fixup_later (ctx, &out, node, &node->parent);
+    dump_field_fixup_later (ctx, &out, node, &node->left);
   if (node->right)
-    dump_field_fixup_later (ctx, &out, node, &node->parent);
+    dump_field_fixup_later (ctx, &out, node, &node->right);
   DUMP_FIELD_COPY (&out, node, begin);
   DUMP_FIELD_COPY (&out, node, end);
   DUMP_FIELD_COPY (&out, node, limit);