mirror of
https://github.com/neovim/neovim.git
synced 2025-10-05 09:26:30 +00:00
refactor: replace char_u with char
Work on https://github.com/neovim/neovim/issues/459
This commit is contained in:
@@ -533,7 +533,7 @@ void spell_suggest(int count)
|
||||
}
|
||||
vim_snprintf((char *)IObuff, IOSIZE, "%2d", i + 1);
|
||||
if (cmdmsg_rl) {
|
||||
rl_mirror(IObuff);
|
||||
rl_mirror((char_u *)IObuff);
|
||||
}
|
||||
msg_puts((const char *)IObuff);
|
||||
|
||||
@@ -559,7 +559,7 @@ void spell_suggest(int count)
|
||||
}
|
||||
if (cmdmsg_rl) {
|
||||
// Mirror the numbers, but keep the leading space.
|
||||
rl_mirror(IObuff + 1);
|
||||
rl_mirror((char_u *)IObuff + 1);
|
||||
}
|
||||
msg_advance(30);
|
||||
msg_puts((const char *)IObuff);
|
||||
|
Reference in New Issue
Block a user