mirror of
https://github.com/neovim/neovim.git
synced 2025-10-15 22:36:09 +00:00
refactor: replace char_u with char 4 (#19987)
* refactor: replace char_u with char Work on https://github.com/neovim/neovim/issues/459
This commit is contained in:
@@ -1183,7 +1183,7 @@ void ex_match(exarg_T *eap)
|
||||
&& (ascii_iswhite(eap->arg[4]) || ends_excmd(eap->arg[4])))) {
|
||||
end = (char_u *)eap->arg + 4;
|
||||
} else {
|
||||
p = skiptowhite((char_u *)eap->arg);
|
||||
p = (char_u *)skiptowhite(eap->arg);
|
||||
if (!eap->skip) {
|
||||
g = vim_strnsave((char_u *)eap->arg, (size_t)(p - (char_u *)eap->arg));
|
||||
}
|
||||
|
Reference in New Issue
Block a user