commit | 19d2f1589850d7db1ce77efec052929246f156e2 | [log] [tgz] |
---|---|---|
author | Bram Moolenaar <Bram@vim.org> | Mon Feb 01 21:38:19 2016 +0100 |
committer | Bram Moolenaar <Bram@vim.org> | Mon Feb 01 21:38:19 2016 +0100 |
tree | be47c6956bd31ba45624e931806243090194b22f | |
parent | ca568aeec60dd6cc13b4dcf5cec0e0a07113547f [diff] [blame] |
patch 7.4.1231 Problem: JSON messages are not parsed properly. Solution: Queue received messages.
diff --git a/src/proto/json.pro b/src/proto/json.pro index 48ce9ad..0b39e84 100644 --- a/src/proto/json.pro +++ b/src/proto/json.pro
@@ -1,5 +1,5 @@ /* json.c */ char_u *json_encode(typval_T *val); char_u *json_encode_nr_expr(int nr, typval_T *val); -void json_decode(js_read_T *reader, typval_T *res); +int json_decode(js_read_T *reader, typval_T *res); /* vim: set ft=c : */