mirror of
https://github.com/neovim/neovim.git
synced 2025-12-01 14:33:11 +00:00
Replace VIM_ISDIGIT() and vim_isdigit() with ascii_isdigit() defined in ascii.h
This commit is contained in:
@@ -1609,7 +1609,7 @@ void putdigraph(char_u *str)
|
||||
}
|
||||
str = skipwhite(str);
|
||||
|
||||
if (!VIM_ISDIGIT(*str)) {
|
||||
if (!ascii_isdigit(*str)) {
|
||||
EMSG(_(e_number_exp));
|
||||
return;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user