From: Andrea Corallo Date: Fri, 2 Oct 2020 11:47:29 +0000 (+0200) Subject: * src/pdumper.c (dump_do_dump_relocation): Better error for incoherent eln. X-Git-Tag: emacs-28.0.90~2727^2~406 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=6a0994bc976534e56aa4990584f363536bc35271;p=emacs.git * src/pdumper.c (dump_do_dump_relocation): Better error for incoherent eln. --- 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, dump_ptr (dump_base, reloc_offset); comp_u->lambda_gc_guard_h = CALLN (Fmake_hash_table, QCtest, Qeq); if (!CONSP (comp_u->file)) - error ("Trying to load incoherent dumped .eln"); + error ("Trying to load incoherent dumped eln file %s", + SSDATA (comp_u->file)); /* Check just once if this is a local build or Emacs was installed. */ if (installation_state == UNKNOWN)