mirror of
https://github.com/neovim/neovim.git
synced 2025-09-13 23:08:16 +00:00
Cleanup: Rename getdigits() family functions.
This commit is contained in:
@@ -2750,7 +2750,7 @@ void ex_lockvar(exarg_T *eap)
|
||||
if (eap->forceit)
|
||||
deep = -1;
|
||||
else if (vim_isdigit(*arg)) {
|
||||
deep = get_int_digits(&arg);
|
||||
deep = getdigits_int(&arg);
|
||||
arg = skipwhite(arg);
|
||||
}
|
||||
|
||||
@@ -13370,7 +13370,7 @@ static void f_setreg(typval_T *argvars, typval_T *rettv)
|
||||
yank_type = MBLOCK;
|
||||
if (VIM_ISDIGIT(stropt[1])) {
|
||||
++stropt;
|
||||
block_len = get_long_digits(&stropt) - 1;
|
||||
block_len = getdigits_long(&stropt) - 1;
|
||||
--stropt;
|
||||
}
|
||||
break;
|
||||
|
Reference in New Issue
Block a user