mirror of
https://github.com/neovim/neovim.git
synced 2025-09-23 19:48:32 +00:00
Replace VIM_ISDIGIT() and vim_isdigit() with ascii_isdigit() defined in ascii.h
This commit is contained in:
@@ -4977,7 +4977,7 @@ win_redr_custom (
|
||||
if (*++stl == '-')
|
||||
stl++;
|
||||
if (atoi((char *)stl))
|
||||
while (VIM_ISDIGIT(*stl))
|
||||
while (ascii_isdigit(*stl))
|
||||
stl++;
|
||||
if (*stl++ != '(')
|
||||
stl = p_ruf;
|
||||
|
Reference in New Issue
Block a user