aboutsummaryrefslogtreecommitdiff
path: root/src/nvim/ui.c
diff options
context:
space:
mode:
authorEliseo Martínez <eliseomarmol@gmail.com>2015-01-11 20:57:33 +0100
committerEliseo Martínez <eliseomarmol@gmail.com>2015-01-11 21:04:08 +0100
commit7f7262e93390a1855ac9c687bd492eadfe10cf98 (patch)
treecdbe41bd51e1db7ba38b4ecc84d562b21c374a06 /src/nvim/ui.c
parentbb737b6f0e41e16dddf5c4d0d12d406adfcd5851 (diff)
downloadrneovim-7f7262e93390a1855ac9c687bd492eadfe10cf98.tar.gz
rneovim-7f7262e93390a1855ac9c687bd492eadfe10cf98.tar.bz2
rneovim-7f7262e93390a1855ac9c687bd492eadfe10cf98.zip
Cleanup: Rename getdigits() family functions.
Diffstat (limited to 'src/nvim/ui.c')
-rw-r--r--src/nvim/ui.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/nvim/ui.c b/src/nvim/ui.c
index a0b45c1077..25d6a81960 100644
--- a/src/nvim/ui.c
+++ b/src/nvim/ui.c
@@ -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;
}