mirror of
https://github.com/neovim/neovim.git
synced 2025-09-18 17:28:23 +00:00
refactor: replace char_u variables and functions with char (#18288)
Work on https://github.com/neovim/neovim/issues/459
This commit is contained in:
@@ -2045,7 +2045,7 @@ int has_loop_cmd(char_u *p)
|
||||
while (*p == ' ' || *p == '\t' || *p == ':') {
|
||||
++p;
|
||||
}
|
||||
len = modifier_len(p);
|
||||
len = modifier_len((char *)p);
|
||||
if (len == 0) {
|
||||
break;
|
||||
}
|
||||
|
Reference in New Issue
Block a user