Fix compilation warning due to a recent change

* src/json.c (json_handle_nonlocal_exit): Always return a
value.
This commit is contained in:
Eli Zaretskii 2019-04-19 11:04:17 +03:00
parent 5ada97cfcd
commit d9d9c32329

View file

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