mirror of
https://github.com/neovim/neovim.git
synced 2025-09-20 02:08:17 +00:00
refactor: replace char_u with char
Work on https://github.com/neovim/neovim/issues/459
This commit is contained in:
@@ -149,7 +149,7 @@ int buf_init_chartab(buf_T *buf, int global)
|
||||
p = p_isf;
|
||||
} else { // i == 3
|
||||
// fourth round: 'iskeyword'
|
||||
p = buf->b_p_isk;
|
||||
p = (char_u *)buf->b_p_isk;
|
||||
}
|
||||
|
||||
while (*p) {
|
||||
|
Reference in New Issue
Block a user