mirror of
https://github.com/neovim/neovim.git
synced 2025-09-07 03:48:18 +00:00
refactor: replace char_u with char
Work on https://github.com/neovim/neovim/issues/459
This commit is contained in:
@@ -1828,13 +1828,13 @@ static void parse_quoted_string(ParserState *const pstate, ExprASTNode *const no
|
||||
v_p += special_len;
|
||||
} else {
|
||||
is_unknown = true;
|
||||
mb_copy_char((const char_u **)&p, (char_u **)&v_p);
|
||||
mb_copy_char(&p, &v_p);
|
||||
}
|
||||
break;
|
||||
}
|
||||
default:
|
||||
is_unknown = true;
|
||||
mb_copy_char((const char_u **)&p, (char_u **)&v_p);
|
||||
mb_copy_char(&p, &v_p);
|
||||
break;
|
||||
}
|
||||
if (pstate->colors) {
|
||||
|
Reference in New Issue
Block a user