mirror of
https://github.com/neovim/neovim.git
synced 2025-10-15 06:16:08 +00:00
refactor: replace char_u variables and functions with char
Work on https://github.com/neovim/neovim/issues/459
This commit is contained in:
@@ -1892,7 +1892,7 @@ static int nfa_regatom(void)
|
||||
case Magic('L'):
|
||||
case Magic('u'):
|
||||
case Magic('U'):
|
||||
p = vim_strchr(classchars, no_Magic(c));
|
||||
p = (char_u *)vim_strchr((char *)classchars, no_Magic(c));
|
||||
if (p == NULL) {
|
||||
if (extra == NFA_ADD_NL) {
|
||||
semsg(_(e_ill_char_class), (int64_t)c);
|
||||
|
Reference in New Issue
Block a user