summaryrefslogtreecommitdiff
path: root/src/json.c
diff options
context:
space:
mode:
authorPhilipp Stephani <phst@google.com>2019-04-19 10:26:32 +0200
committerPhilipp Stephani <phst@google.com>2019-04-19 10:26:32 +0200
commit74f54af2b9048cb1ea7a051c9efe079eaaeb4697 (patch)
treeded3fa4174a1cf5f2b809e5404bd7abffd8fd6af /src/json.c
parentd9d9c32329cb17f96cb1690228b30702b5a4c772 (diff)
downloademacs-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.
Diffstat (limited to 'src/json.c')
-rw-r--r--src/json.c2
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);
}
}