Replace VIM_ISDIGIT() and vim_isdigit() with ascii_isdigit() defined in ascii.h

This commit is contained in:
Felipe Oliveira Carvalho
2015-04-22 19:47:53 -03:00
parent 93bf201119
commit caabcae0b7
37 changed files with 168 additions and 176 deletions

View File

@@ -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);
}