mirror of
https://github.com/neovim/neovim.git
synced 2025-09-30 06:58:35 +00:00
refactor: replace char_u with char
Work on https://github.com/neovim/neovim/issues/459
This commit is contained in:
@@ -2765,7 +2765,7 @@ void ex_undolist(exarg_T *eap)
|
||||
if (GA_EMPTY(&ga)) {
|
||||
msg(_("Nothing to undo"));
|
||||
} else {
|
||||
sort_strings((char_u **)ga.ga_data, ga.ga_len);
|
||||
sort_strings(ga.ga_data, ga.ga_len);
|
||||
|
||||
msg_start();
|
||||
msg_puts_attr(_("number changes when saved"),
|
||||
|
Reference in New Issue
Block a user