mirror of
https://github.com/neovim/neovim.git
synced 2025-09-24 20:18:32 +00:00
refactor: replace char_u with char
Work on https://github.com/neovim/neovim/issues/459
This commit is contained in:
@@ -121,7 +121,7 @@ void ex_menu(exarg_T *eap)
|
||||
}
|
||||
if (ascii_iswhite(*p)) {
|
||||
for (i = 0; i < MENUDEPTH && !ascii_iswhite(*arg); i++) {
|
||||
pri_tab[i] = getdigits_long((char_u **)&arg, false, 0);
|
||||
pri_tab[i] = getdigits_long(&arg, false, 0);
|
||||
if (pri_tab[i] == 0) {
|
||||
pri_tab[i] = 500;
|
||||
}
|
||||
|
Reference in New Issue
Block a user