mirror of
https://github.com/neovim/neovim.git
synced 2025-10-01 07:28:34 +00:00
refactor: replace char_u with char 22 (#21786)
Work on https://github.com/neovim/neovim/issues/459
This commit is contained in:
@@ -704,7 +704,7 @@ static int cin_get_equal_amount(linenr_T lnum)
|
||||
|
||||
s = ml_get(lnum);
|
||||
line = s;
|
||||
while (*s != NUL && vim_strchr("=;{}\"'", *s) == NULL) {
|
||||
while (*s != NUL && vim_strchr("=;{}\"'", (uint8_t)(*s)) == NULL) {
|
||||
if (cin_iscomment(s)) { // ignore comments
|
||||
s = cin_skipcomment(s);
|
||||
} else {
|
||||
|
Reference in New Issue
Block a user