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.
This commit is contained in:
Philipp Stephani 2019-04-19 10:26:32 +02:00
parent d9d9c32329
commit 74f54af2b9

View file

@ -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);
}
}