From 0313b3839e23632133de3d3c5a13b0f722a8073a Mon Sep 17 00:00:00 2001 From: Daniel Colascione Date: Mon, 19 Feb 2018 16:25:52 -0800 Subject: [PATCH] Abort after always-failing eassert --- src/pdumper.c | 1 + 1 file changed, 1 insertion(+) 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 (); } -- 2.39.5