mirror of
https://github.com/neovim/neovim.git
synced 2025-10-07 10:26:31 +00:00
refactor: replace char_u with char
Work on https://github.com/neovim/neovim/issues/459
This commit is contained in:
@@ -111,7 +111,7 @@
|
||||
(v).size = (v).size + len; \
|
||||
} while (0)
|
||||
|
||||
#define kv_concat(v, str) kv_concat_len(v, str, STRLEN(str))
|
||||
#define kv_concat(v, str) kv_concat_len(v, str, strlen(str))
|
||||
#define kv_splice(v1, v0) kv_concat_len(v1, (v0).items, (v0).size)
|
||||
|
||||
#define kv_pushp(v) \
|
||||
|
Reference in New Issue
Block a user