aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorAndrea Corallo2020-10-02 13:47:29 +0200
committerAndrea Corallo2020-10-02 13:47:29 +0200
commit6a0994bc976534e56aa4990584f363536bc35271 (patch)
tree67129a1fb8214f6bd1121e245df4734cf53b08b4 /src
parentf345622152786388f4689f81f91acabe6eab9500 (diff)
downloademacs-6a0994bc976534e56aa4990584f363536bc35271.tar.gz
emacs-6a0994bc976534e56aa4990584f363536bc35271.zip
* src/pdumper.c (dump_do_dump_relocation): Better error for incoherent eln.
Diffstat (limited to 'src')
-rw-r--r--src/pdumper.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/pdumper.c b/src/pdumper.c
index 03391c49505..0528219139c 100644
--- a/src/pdumper.c
+++ b/src/pdumper.c
@@ -5250,7 +5250,8 @@ dump_do_dump_relocation (const uintptr_t dump_base,
5250 dump_ptr (dump_base, reloc_offset); 5250 dump_ptr (dump_base, reloc_offset);
5251 comp_u->lambda_gc_guard_h = CALLN (Fmake_hash_table, QCtest, Qeq); 5251 comp_u->lambda_gc_guard_h = CALLN (Fmake_hash_table, QCtest, Qeq);
5252 if (!CONSP (comp_u->file)) 5252 if (!CONSP (comp_u->file))
5253 error ("Trying to load incoherent dumped .eln"); 5253 error ("Trying to load incoherent dumped eln file %s",
5254 SSDATA (comp_u->file));
5254 5255
5255 /* Check just once if this is a local build or Emacs was installed. */ 5256 /* Check just once if this is a local build or Emacs was installed. */
5256 if (installation_state == UNKNOWN) 5257 if (installation_state == UNKNOWN)