From: Andrea Corallo Date: Mon, 8 Jun 2020 22:06:33 +0000 (+0200) Subject: * src/pdumper.c (dump_do_dump_relocation): Fix 'lambda_gc_guard' fill value. X-Git-Tag: emacs-28.0.90~2727^2~579 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=dfa52572bdc1024342fa1a227ff627386e097a12;p=emacs.git * src/pdumper.c (dump_do_dump_relocation): Fix 'lambda_gc_guard' fill value. Given 'lambda_gc_guard' is in use for sanity checking fill it with t as value. --- diff --git a/src/pdumper.c b/src/pdumper.c index 92ac96a8faa..8cb9284c014 100644 --- a/src/pdumper.c +++ b/src/pdumper.c @@ -5367,7 +5367,7 @@ dump_do_dump_relocation (const uintptr_t dump_base, &(comp_u->data_imp_relocs[XFIXNUM (lambda_data_idx)]); eassert (EQ (*fixup, Qlambda_fixup)); *fixup = tem; - Fputhash (tem, Qnil, comp_u->lambda_gc_guard); + Fputhash (tem, Qt, comp_u->lambda_gc_guard); } break; }