mirror of
https://github.com/neovim/neovim.git
synced 2025-10-17 15:21:47 +00:00
refactor: replace char_u with char
Work on https://github.com/neovim/neovim/issues/459
This commit is contained in:
@@ -1721,7 +1721,7 @@ bool rem_backslash(const char *str)
|
||||
|| (str[1] != NUL
|
||||
&& str[1] != '*'
|
||||
&& str[1] != '?'
|
||||
&& !vim_isfilec(str[1])));
|
||||
&& !vim_isfilec((uint8_t)str[1])));
|
||||
|
||||
#else // ifdef BACKSLASH_IN_FILENAME
|
||||
return str[0] == '\\' && str[1] != NUL;
|
||||
|
Reference in New Issue
Block a user