mirror of
https://github.com/neovim/neovim.git
synced 2025-09-29 14:38:32 +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:
@@ -178,7 +178,7 @@ static int assert_match_common(typval_T *argvars, assert_type_T atype)
|
||||
|
||||
if (pat == NULL || text == NULL) {
|
||||
emsg(_(e_invarg));
|
||||
} else if (pattern_match((char_u *)pat, (char_u *)text, false)
|
||||
} else if (pattern_match((char *)pat, (char *)text, false)
|
||||
!= (atype == ASSERT_MATCH)) {
|
||||
garray_T ga;
|
||||
prepare_assert_error(&ga);
|
||||
|
Reference in New Issue
Block a user