mirror of
https://github.com/neovim/neovim.git
synced 2025-10-07 02:16:31 +00:00
lint: cleanup after parent commits
This commit is contained in:
@@ -118,7 +118,8 @@
|
||||
// Advance multi-byte pointer, do not skip over composing chars.
|
||||
# define MB_CPTR_ADV(p) (p += utf_ptr2len(p))
|
||||
// Backup multi-byte pointer. Only use with "p" > "s" !
|
||||
# define MB_PTR_BACK(s, p) (p -= utf_head_off((char_u *)s, (char_u *)p - 1) + 1)
|
||||
# define MB_PTR_BACK(s, p) \
|
||||
(p -= utf_head_off((char_u *)s, (char_u *)p - 1) + 1)
|
||||
// get length of multi-byte char, not including composing chars
|
||||
# define MB_CPTR2LEN(p) utf_ptr2len(p)
|
||||
|
||||
|
Reference in New Issue
Block a user