projects
/
emacs.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
5ada97c
)
Fix compilation warning due to a recent change
author
Eli Zaretskii
<eliz@gnu.org>
Fri, 19 Apr 2019 08:04:17 +0000
(11:04 +0300)
committer
Eli Zaretskii
<eliz@gnu.org>
Fri, 19 Apr 2019 08:04:17 +0000
(11:04 +0300)
* src/json.c (json_handle_nonlocal_exit): Always return a
value.
src/json.c
patch
|
blob
|
history
diff --git
a/src/json.c
b/src/json.c
index 014ac3e316848768fc42197e6a4c14f4b349c82f..6ddf5100e866f0f53fd8aabe80689c27105a0846 100644
(file)
--- a/
src/json.c
+++ b/
src/json.c
@@
-674,6
+674,8
@@
json_handle_nonlocal_exit (enum nonlocal_exit type, Lisp_Object data)
return data;
case NONLOCAL_EXIT_THROW:
return Fcons (Qno_catch, data);
+ default:
+ return Qnil;
}
}