mirror of
https://github.com/neovim/neovim.git
synced 2025-09-20 18:28:19 +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:
@@ -1394,7 +1394,7 @@ static int expand_backtick(garray_T *gap, char_u *pat, int flags)
|
||||
|
||||
cmd = buffer;
|
||||
while (*cmd != NUL) {
|
||||
cmd = skipwhite(cmd); // skip over white space
|
||||
cmd = (char_u *)skipwhite((char *)cmd); // skip over white space
|
||||
p = cmd;
|
||||
while (*p != NUL && *p != '\r' && *p != '\n') { // skip over entry
|
||||
++p;
|
||||
|
Reference in New Issue
Block a user