From: Daniel Colascione Date: Tue, 20 Feb 2018 00:25:52 +0000 (-0800) Subject: Abort after always-failing eassert X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=0313b3839e23632133de3d3c5a13b0f722a8073a;p=emacs.git Abort after always-failing eassert --- diff --git a/src/pdumper.c b/src/pdumper.c index e5da227d905..79946cc66f0 100644 --- a/src/pdumper.c +++ b/src/pdumper.c @@ -3002,6 +3002,7 @@ dump_object_1 (struct dump_context *ctx, Lisp_Object object) break; case_Lisp_Int: eassert ("should not be dumping int: is self-representing" && 0); + abort (); default: emacs_abort (); }