From 1247684ae14e83c5b742be390de8dee00fd4e241 Mon Sep 17 00:00:00 2001 From: bfredl Date: Tue, 2 Jul 2024 13:47:04 +0200 Subject: build(deps): remove msgpack-c dependency --- src/nvim/msgpack_rpc/unpacker.c | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'src/nvim/msgpack_rpc') 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) { -- cgit