mirror of
https://github.com/neovim/neovim.git
synced 2025-09-19 09:48: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:
@@ -1788,7 +1788,7 @@ static void parse_quoted_string(ParserState *const pstate, ExprASTNode *const no
|
||||
if (is_hex) {
|
||||
*v_p++ = (char)nr;
|
||||
} else {
|
||||
v_p += utf_char2bytes(nr, (char_u *)v_p);
|
||||
v_p += utf_char2bytes(nr, v_p);
|
||||
}
|
||||
} else {
|
||||
is_unknown = true;
|
||||
|
Reference in New Issue
Block a user