mirror of
https://github.com/neovim/neovim.git
synced 2025-10-03 00:18:33 +00:00
refactor: replace char_u with char 25 (#21838)
refactor: replace char_u with char Work on https://github.com/neovim/neovim/issues/459
This commit is contained in:
@@ -273,7 +273,7 @@ bool startPS(linenr_T lnum, int para, bool both)
|
||||
return true;
|
||||
}
|
||||
if (*s == '.' && (inmacro(p_sections, s + 1)
|
||||
|| (!para && inmacro((char *)p_para, s + 1)))) {
|
||||
|| (!para && inmacro(p_para, s + 1)))) {
|
||||
return true;
|
||||
}
|
||||
return false;
|
||||
@@ -1078,7 +1078,7 @@ static bool in_html_tag(bool end_tag)
|
||||
if (inc(&pos) < 0) {
|
||||
return false;
|
||||
}
|
||||
c = *ml_get_pos(&pos);
|
||||
c = (uint8_t)(*ml_get_pos(&pos));
|
||||
if (c == '>') {
|
||||
break;
|
||||
}
|
||||
|
Reference in New Issue
Block a user