diff options
Diffstat (limited to 'src/pdumper.c')
| -rw-r--r-- | src/pdumper.c | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/src/pdumper.c b/src/pdumper.c index 41edf26b77a..89752391c84 100644 --- a/src/pdumper.c +++ b/src/pdumper.c | |||
| @@ -2466,7 +2466,10 @@ dump_blv (struct dump_context *ctx, | |||
| 2466 | DUMP_FIELD_COPY (&out, blv, local_if_set); | 2466 | DUMP_FIELD_COPY (&out, blv, local_if_set); |
| 2467 | DUMP_FIELD_COPY (&out, blv, found); | 2467 | DUMP_FIELD_COPY (&out, blv, found); |
| 2468 | if (blv->fwd) | 2468 | if (blv->fwd) |
| 2469 | dump_field_fwd (ctx, &out, blv, &blv->fwd); | 2469 | { |
| 2470 | eassert (XFWDTYPE (blv->fwd) != Lisp_Fwd_Buffer_Obj); | ||
| 2471 | dump_field_fwd (ctx, &out, blv, &blv->fwd); | ||
| 2472 | } | ||
| 2470 | dump_field_lv (ctx, &out, blv, &blv->where, WEIGHT_NORMAL); | 2473 | dump_field_lv (ctx, &out, blv, &blv->where, WEIGHT_NORMAL); |
| 2471 | dump_field_lv (ctx, &out, blv, &blv->defcell, WEIGHT_STRONG); | 2474 | dump_field_lv (ctx, &out, blv, &blv->defcell, WEIGHT_STRONG); |
| 2472 | dump_field_lv (ctx, &out, blv, &blv->valcell, WEIGHT_STRONG); | 2475 | dump_field_lv (ctx, &out, blv, &blv->valcell, WEIGHT_STRONG); |