diff options
Diffstat (limited to 'src/nvim/tag.c')
-rw-r--r-- | src/nvim/tag.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/nvim/tag.c b/src/nvim/tag.c index 29d3bf27e1..5966efa05d 100644 --- a/src/nvim/tag.c +++ b/src/nvim/tag.c @@ -2652,7 +2652,7 @@ static int find_extra(char_u **pp) /* Repeat for addresses separated with ';' */ for (;; ) { - if (VIM_ISDIGIT(*str)) + if (ascii_isdigit(*str)) str = skipdigits(str); else if (*str == '/' || *str == '?') { str = skip_regexp(str + 1, *str, FALSE, NULL); @@ -2663,7 +2663,7 @@ static int find_extra(char_u **pp) } else str = NULL; if (str == NULL || *str != ';' - || !(VIM_ISDIGIT(str[1]) || str[1] == '/' || str[1] == '?')) + || !(ascii_isdigit(str[1]) || str[1] == '/' || str[1] == '?')) break; ++str; /* skip ';' */ } |