diff options
author | Justin M. Keyes <justinkz@gmail.com> | 2016-01-08 09:29:37 -0500 |
---|---|---|
committer | Justin M. Keyes <justinkz@gmail.com> | 2016-01-08 09:29:37 -0500 |
commit | 3b23d733ddac1b42faea10e68864153d9e356da0 (patch) | |
tree | e29ad59c0e9288d60e8926c61b27e7fe6a5d51b1 /src/nvim/eval.h | |
parent | af5c34f8a50d547861614a4121d308d3e2a650da (diff) | |
parent | c6f6033482015723742f97aeba95d0e65f694943 (diff) | |
download | rneovim-3b23d733ddac1b42faea10e68864153d9e356da0.tar.gz rneovim-3b23d733ddac1b42faea10e68864153d9e356da0.tar.bz2 rneovim-3b23d733ddac1b42faea10e68864153d9e356da0.zip |
Merge pull request #3943 from ZyX-I/better-fref-error
eval: Use better error messages when failing to dump values
Diffstat (limited to 'src/nvim/eval.h')
-rw-r--r-- | src/nvim/eval.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/nvim/eval.h b/src/nvim/eval.h index 19a1bbb083..ea8b5bc253 100644 --- a/src/nvim/eval.h +++ b/src/nvim/eval.h @@ -118,7 +118,8 @@ enum { /// Maximum number of function arguments #define MAX_FUNC_ARGS 20 -int vim_to_msgpack(msgpack_packer *const, typval_T *const); +int vim_to_msgpack(msgpack_packer *const, typval_T *const, + const char *const objname); #ifdef INCLUDE_GENERATED_DECLARATIONS # include "eval.h.generated.h" |