mirror of
https://github.com/neovim/neovim.git
synced 2025-09-27 21:48:35 +00:00
Replace VIM_ISDIGIT() and vim_isdigit() with ascii_isdigit() defined in ascii.h
This commit is contained in:
@@ -771,7 +771,7 @@ int start_redo(long count, int old_redo)
|
||||
|
||||
/* try to enter the count (in place of a previous count) */
|
||||
if (count) {
|
||||
while (VIM_ISDIGIT(c)) /* skip "old" count */
|
||||
while (ascii_isdigit(c)) /* skip "old" count */
|
||||
c = read_redo(FALSE, old_redo);
|
||||
add_num_buff(&readbuf2, count);
|
||||
}
|
||||
|
Reference in New Issue
Block a user