diff options
author | Bram Moolenaar <Bram@vim.org> | 2016-02-01 21:38:19 +0100 |
---|---|---|
committer | Bram Moolenaar <Bram@vim.org> | 2016-02-01 21:38:19 +0100 |
commit | 19d2f1589850d7db1ce77efec052929246f156e2 (patch) | |
tree | be47c6956bd31ba45624e931806243090194b22f /src/proto/eval.pro | |
parent | ca568aeec60dd6cc13b4dcf5cec0e0a07113547f (diff) | |
download | vim-19d2f1589850d7db1ce77efec052929246f156e2.zip |
patch 7.4.1231
Problem: JSON messages are not parsed properly.
Solution: Queue received messages.
Diffstat (limited to 'src/proto/eval.pro')
-rw-r--r-- | src/proto/eval.pro | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/proto/eval.pro b/src/proto/eval.pro index ea2096a5d..d1f5c3cc8 100644 --- a/src/proto/eval.pro +++ b/src/proto/eval.pro @@ -101,6 +101,7 @@ void set_reg_var(int c); char_u *v_exception(char_u *oldval); char_u *v_throwpoint(char_u *oldval); char_u *set_cmdarg(exarg_T *eap, char_u *oldarg); +typval_T *alloc_tv(void); void free_tv(typval_T *varp); void clear_tv(typval_T *varp); long get_tv_number_chk(typval_T *varp, int *denote); |