mirror of
https://github.com/neovim/neovim.git
synced 2025-10-17 23:31:51 +00:00
refactor: replace char_u with char
Work on https://github.com/neovim/neovim/issues/459
This commit is contained in:
@@ -220,7 +220,7 @@ char *parse_shape_opt(int what)
|
||||
endp = vim_strchr(p, '-');
|
||||
if (commap == NULL) { // last part
|
||||
if (endp == NULL) {
|
||||
endp = p + STRLEN(p); // find end of part
|
||||
endp = p + strlen(p); // find end of part
|
||||
}
|
||||
} else if (endp > commap || endp == NULL) {
|
||||
endp = commap;
|
||||
|
Reference in New Issue
Block a user