diff options
author | dundargoc <gocdundar@gmail.com> | 2022-10-21 16:43:03 +0200 |
---|---|---|
committer | dundargoc <gocdundar@gmail.com> | 2022-10-21 16:46:03 +0200 |
commit | abf758a2977c4e6cab4dfa217f56da853d85851c (patch) | |
tree | 39076e5bd63519a578dd51883251c9314071da9d /src/nvim/eval/encode.h | |
parent | 837190720310deca0231fc42aa3023957ff79a3a (diff) | |
download | rneovim-abf758a2977c4e6cab4dfa217f56da853d85851c.tar.gz rneovim-abf758a2977c4e6cab4dfa217f56da853d85851c.tar.bz2 rneovim-abf758a2977c4e6cab4dfa217f56da853d85851c.zip |
refactor: fix uncrustify lint errors
Diffstat (limited to 'src/nvim/eval/encode.h')
-rw-r--r-- | src/nvim/eval/encode.h | 8 |
1 files changed, 2 insertions, 6 deletions
diff --git a/src/nvim/eval/encode.h b/src/nvim/eval/encode.h index 9d311fe356..c0c98e0990 100644 --- a/src/nvim/eval/encode.h +++ b/src/nvim/eval/encode.h @@ -15,9 +15,7 @@ /// @param[in] objname Object name, used for error message. /// /// @return OK in case of success, FAIL otherwise. -int encode_vim_to_msgpack(msgpack_packer *packer, - typval_T *tv, - const char *objname); +int encode_vim_to_msgpack(msgpack_packer *packer, typval_T *tv, const char *objname); /// Convert VimL value to :echo output /// @@ -26,9 +24,7 @@ int encode_vim_to_msgpack(msgpack_packer *packer, /// @param[in] objname Object name, used for error message. /// /// @return OK in case of success, FAIL otherwise. -int encode_vim_to_echo(garray_T *packer, - typval_T *tv, - const char *objname); +int encode_vim_to_echo(garray_T *packer, typval_T *tv, const char *objname); /// Structure defining state for read_from_list() typedef struct { |