mirror of
https://github.com/neovim/neovim.git
synced 2025-09-24 20:18:32 +00:00
Replace VIM_ISDIGIT() and vim_isdigit() with ascii_isdigit() defined in ascii.h
This commit is contained in:
@@ -133,7 +133,7 @@ char_u *parse_shape_opt(int what)
|
||||
len = 8;
|
||||
if (len != 0) {
|
||||
p += len;
|
||||
if (!VIM_ISDIGIT(*p))
|
||||
if (!ascii_isdigit(*p))
|
||||
return (char_u *)N_("E548: digit expected");
|
||||
int n = getdigits_int(&p);
|
||||
if (len == 3) { /* "ver" or "hor" */
|
||||
|
Reference in New Issue
Block a user