From 74f54af2b9048cb1ea7a051c9efe079eaaeb4697 Mon Sep 17 00:00:00 2001 From: Philipp Stephani Date: Fri, 19 Apr 2019 10:26:32 +0200 Subject: [PATCH] Use eassume (false) for branch that's never taken. * src/json.c (json_handle_nonlocal_exit): Use eassume (false) since this branch is never taken. --- src/json.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/json.c b/src/json.c index 6ddf5100e86..928825e034c 100644 --- a/src/json.c +++ b/src/json.c @@ -675,7 +675,7 @@ json_handle_nonlocal_exit (enum nonlocal_exit type, Lisp_Object data) case NONLOCAL_EXIT_THROW: return Fcons (Qno_catch, data); default: - return Qnil; + eassume (false); } } -- 2.39.5