Cleanup: Rename getdigits() family functions.

This commit is contained in:
Eliseo Martínez
2015-01-11 20:57:33 +01:00
parent bb737b6f0e
commit 7f7262e933
23 changed files with 83 additions and 83 deletions

View File

@@ -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;
}