mirror of
https://github.com/neovim/neovim.git
synced 2025-09-07 20:08:17 +00:00
refactor: replace char_u with char
Work on https://github.com/neovim/neovim/issues/459
This commit is contained in:
@@ -2869,7 +2869,7 @@ static void append_command(char *cmd)
|
||||
STRCPY(d, "...");
|
||||
}
|
||||
STRCAT(IObuff, ": ");
|
||||
d = (char *)IObuff + STRLEN(IObuff);
|
||||
d = IObuff + strlen(IObuff);
|
||||
while (*s != NUL && d - IObuff + 5 < IOSIZE) {
|
||||
if ((char_u)s[0] == 0xc2 && (char_u)s[1] == 0xa0) {
|
||||
s += 2;
|
||||
|
Reference in New Issue
Block a user