aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorAndrea Corallo2020-06-09 00:06:33 +0200
committerAndrea Corallo2020-06-08 21:51:24 +0100
commitdfa52572bdc1024342fa1a227ff627386e097a12 (patch)
tree474a2a3a08bdd5fbcf48de0f5a1ce172c5b7ffb2 /src
parent3d576c784b3fa01b4d6b33a4172351b7c3a61660 (diff)
downloademacs-dfa52572bdc1024342fa1a227ff627386e097a12.tar.gz
emacs-dfa52572bdc1024342fa1a227ff627386e097a12.zip
* 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.
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 92ac96a8faa..8cb9284c014 100644
--- a/src/pdumper.c
+++ b/src/pdumper.c
@@ -5367,7 +5367,7 @@ dump_do_dump_relocation (const uintptr_t dump_base,
5367 &(comp_u->data_imp_relocs[XFIXNUM (lambda_data_idx)]); 5367 &(comp_u->data_imp_relocs[XFIXNUM (lambda_data_idx)]);
5368 eassert (EQ (*fixup, Qlambda_fixup)); 5368 eassert (EQ (*fixup, Qlambda_fixup));
5369 *fixup = tem; 5369 *fixup = tem;
5370 Fputhash (tem, Qnil, comp_u->lambda_gc_guard); 5370 Fputhash (tem, Qt, comp_u->lambda_gc_guard);
5371 } 5371 }
5372 break; 5372 break;
5373 } 5373 }