mirror of
https://github.com/neovim/neovim.git
synced 2025-10-05 09:26:30 +00:00
refactor: remove char_u (#22829)
Closes https://github.com/neovim/neovim/issues/459
This commit is contained in:
@@ -54,6 +54,6 @@ static inline bool vim_isbreak(int c)
|
||||
/// Used very often if 'linebreak' is set
|
||||
static inline bool vim_isbreak(int c)
|
||||
{
|
||||
return breakat_flags[(char_u)c];
|
||||
return breakat_flags[(uint8_t)c];
|
||||
}
|
||||
#endif // NVIM_CHARSET_H
|
||||
|
Reference in New Issue
Block a user