diff options
author | Eliseo Martínez <eliseomarmol@gmail.com> | 2015-01-11 20:57:33 +0100 |
---|---|---|
committer | Eliseo Martínez <eliseomarmol@gmail.com> | 2015-01-11 21:04:08 +0100 |
commit | 7f7262e93390a1855ac9c687bd492eadfe10cf98 (patch) | |
tree | cdbe41bd51e1db7ba38b4ecc84d562b21c374a06 /src/nvim/ops.c | |
parent | bb737b6f0e41e16dddf5c4d0d12d406adfcd5851 (diff) | |
download | rneovim-7f7262e93390a1855ac9c687bd492eadfe10cf98.tar.gz rneovim-7f7262e93390a1855ac9c687bd492eadfe10cf98.tar.bz2 rneovim-7f7262e93390a1855ac9c687bd492eadfe10cf98.zip |
Cleanup: Rename getdigits() family functions.
Diffstat (limited to 'src/nvim/ops.c')
-rw-r--r-- | src/nvim/ops.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/nvim/ops.c b/src/nvim/ops.c index d471453ffd..87a2c2ca05 100644 --- a/src/nvim/ops.c +++ b/src/nvim/ops.c @@ -4501,7 +4501,7 @@ int read_viminfo_register(vir_T *virp, int force) y_current->y_type = MLINE; /* get the block width; if it's missing we get a zero, which is OK */ str = skipwhite(skiptowhite(str)); - y_current->y_width = get_int_digits(&str); + y_current->y_width = getdigits_int(&str); } while (!(eof = viminfo_readline(virp)) |