diff options
| author | Pip Cet | 2024-08-05 21:47:57 +0000 |
|---|---|---|
| committer | Pip Cet | 2024-08-05 21:47:57 +0000 |
| commit | e7109dfd9c15312d20582efdde8c929c9a65282a (patch) | |
| tree | 1fc830460cf6090b2a97699a99d860617e864452 /src | |
| parent | ca258e81b81539dc20a06958f911fc5dcd3df922 (diff) | |
| download | emacs-e7109dfd9c15312d20582efdde8c929c9a65282a.tar.gz emacs-e7109dfd9c15312d20582efdde8c929c9a65282a.zip | |
Fix typo in pdumper.c
* src/pdumper.c (dump_interval_node): Call 'dump_field_fixup_later' with
the correct arguments. Discovered by Danny McClanahan.
Diffstat (limited to 'src')
| -rw-r--r-- | src/pdumper.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/pdumper.c b/src/pdumper.c index 53bddf91f04..0b8dab3a734 100644 --- a/src/pdumper.c +++ b/src/pdumper.c | |||
| @@ -2136,9 +2136,9 @@ dump_interval_node (struct dump_context *ctx, struct itree_node *node) | |||
| 2136 | if (node->parent) | 2136 | if (node->parent) |
| 2137 | dump_field_fixup_later (ctx, &out, node, &node->parent); | 2137 | dump_field_fixup_later (ctx, &out, node, &node->parent); |
| 2138 | if (node->left) | 2138 | if (node->left) |
| 2139 | dump_field_fixup_later (ctx, &out, node, &node->parent); | 2139 | dump_field_fixup_later (ctx, &out, node, &node->left); |
| 2140 | if (node->right) | 2140 | if (node->right) |
| 2141 | dump_field_fixup_later (ctx, &out, node, &node->parent); | 2141 | dump_field_fixup_later (ctx, &out, node, &node->right); |
| 2142 | DUMP_FIELD_COPY (&out, node, begin); | 2142 | DUMP_FIELD_COPY (&out, node, begin); |
| 2143 | DUMP_FIELD_COPY (&out, node, end); | 2143 | DUMP_FIELD_COPY (&out, node, end); |
| 2144 | DUMP_FIELD_COPY (&out, node, limit); | 2144 | DUMP_FIELD_COPY (&out, node, limit); |