mirror of
https://github.com/neovim/neovim.git
synced 2025-09-28 14:08:32 +00:00
refactor: replace char_u with char
Work on https://github.com/neovim/neovim/issues/459
This commit is contained in:
@@ -1530,7 +1530,7 @@ char *msg_outtrans_one(char *p, int attr)
|
||||
msg_outtrans_len_attr(p, l, attr);
|
||||
return p + l;
|
||||
}
|
||||
msg_puts_attr((const char *)transchar_byte(*p), attr);
|
||||
msg_puts_attr((const char *)transchar_byte((uint8_t)(*p)), attr);
|
||||
return p + 1;
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user