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/cursor_shape.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/cursor_shape.c')
-rw-r--r-- | src/nvim/cursor_shape.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/nvim/cursor_shape.c b/src/nvim/cursor_shape.c index 3dab383dcd..2e98b8f512 100644 --- a/src/nvim/cursor_shape.c +++ b/src/nvim/cursor_shape.c @@ -135,7 +135,7 @@ char_u *parse_shape_opt(int what) p += len; if (!VIM_ISDIGIT(*p)) return (char_u *)N_("E548: digit expected"); - int n = get_int_digits(&p); + int n = getdigits_int(&p); if (len == 3) { /* "ver" or "hor" */ if (n == 0) return (char_u *)N_("E549: Illegal percentage"); |