mirror of
https://github.com/neovim/neovim.git
synced 2025-09-26 13:08:33 +00:00
Cleanup: Rename getdigits() family functions.
This commit is contained in:
@@ -344,14 +344,14 @@ static void parse_abstract_ui_codes(uint8_t *ptr, int len)
|
||||
assert(p != end);
|
||||
|
||||
if (VIM_ISDIGIT(*p)) {
|
||||
arg1 = get_int_digits(&p);
|
||||
arg1 = getdigits_int(&p);
|
||||
if (p >= end) {
|
||||
break;
|
||||
}
|
||||
|
||||
if (*p == ';') {
|
||||
p++;
|
||||
arg2 = get_int_digits(&p);
|
||||
arg2 = getdigits_int(&p);
|
||||
if (p >= end)
|
||||
break;
|
||||
}
|
||||
|
Reference in New Issue
Block a user