diff options
| author | bfredl <bjorn.linse@gmail.com> | 2024-07-02 13:47:04 +0200 |
|---|---|---|
| committer | bfredl <bjorn.linse@gmail.com> | 2024-08-05 12:22:12 +0200 |
| commit | 1247684ae14e83c5b742be390de8dee00fd4e241 (patch) | |
| tree | ea3f7e027f9568ad09a22f575d3cf07635e94e78 /src/nvim/msgpack_rpc | |
| parent | f926cc32c9262b6254e2843276b951cef9da1afe (diff) | |
| download | rneovim-1247684ae14e83c5b742be390de8dee00fd4e241.tar.gz rneovim-1247684ae14e83c5b742be390de8dee00fd4e241.tar.bz2 rneovim-1247684ae14e83c5b742be390de8dee00fd4e241.zip | |
build(deps): remove msgpack-c dependency
Diffstat (limited to 'src/nvim/msgpack_rpc')
| -rw-r--r-- | src/nvim/msgpack_rpc/unpacker.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/nvim/msgpack_rpc/unpacker.c b/src/nvim/msgpack_rpc/unpacker.c index 9372754b01..efd9a1a11f 100644 --- a/src/nvim/msgpack_rpc/unpacker.c +++ b/src/nvim/msgpack_rpc/unpacker.c @@ -525,12 +525,12 @@ bool unpacker_parse_redraw(Unpacker *p) } } -/// require complete string. safe to use e.g. in shada as we have loaded a complete shada item into -/// a linear buffer. +/// Requires a complete string. safe to use e.g. in shada as we have loaded a +/// complete shada item into a linear buffer. /// -/// data and size are preserved in cause of failure +/// Data and size are preserved in cause of failure. /// -/// @return "data" is NULL exact when failure (non-null data and size=0 for +/// @return "data" is NULL only when failure (non-null data and size=0 for /// valid empty string) String unpack_string(const char **data, size_t *size) { |