0
0
mirror of https://github.com/vim/vim.git synced 2025-09-23 03:43:49 -04:00

updated for version 7.0079

This commit is contained in:
Bram Moolenaar
2005-06-04 22:06:24 +00:00
parent 51485f0624
commit 75c50c46a6
21 changed files with 152 additions and 100 deletions

View File

@@ -1840,6 +1840,20 @@ skipdigits(p)
return p;
}
#if defined(FEAT_SYN_HL) || defined(PROTO)
/*
* skip over digits and hex characters
*/
char_u *
skiphex(p)
char_u *p;
{
while (vim_isxdigit(*p)) /* skip to next non-digit */
++p;
return p;
}
#endif
#if defined(FEAT_EX_EXTRA) || defined(PROTO)
/*
* skip to digit (or NUL after the string)