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:
@@ -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)
|
||||
|
Reference in New Issue
Block a user