diff options
| author | Philipp Stephani <phst@google.com> | 2019-04-19 10:26:32 +0200 |
|---|---|---|
| committer | Philipp Stephani <phst@google.com> | 2019-04-19 10:26:32 +0200 |
| commit | 74f54af2b9048cb1ea7a051c9efe079eaaeb4697 (patch) | |
| tree | ded3fa4174a1cf5f2b809e5404bd7abffd8fd6af | |
| parent | d9d9c32329cb17f96cb1690228b30702b5a4c772 (diff) | |
| download | emacs-74f54af2b9048cb1ea7a051c9efe079eaaeb4697.tar.gz | |
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.
| -rw-r--r-- | src/json.c | 2 |
1 files changed, 1 insertions, 1 deletions
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); } } |
