mirror of
https://github.com/neovim/neovim.git
synced 2025-10-15 14:26:07 +00:00
refactor: replace char_u with char 24 (#21823)
refactor: replace char_u with char Work on https://github.com/neovim/neovim/issues/459
This commit is contained in:
@@ -2997,7 +2997,7 @@ static void get_next_filename_completion(void)
|
||||
#ifdef BACKSLASH_IN_FILENAME
|
||||
if (curbuf->b_p_csl[0] != NUL) {
|
||||
for (int i = 0; i < num_matches; i++) {
|
||||
char_u *ptr = matches[i];
|
||||
char *ptr = matches[i];
|
||||
while (*ptr != NUL) {
|
||||
if (curbuf->b_p_csl[0] == 's' && *ptr == '\\') {
|
||||
*ptr = '/';
|
||||
|
Reference in New Issue
Block a user