mirror of
https://github.com/vim/vim.git
synced 2025-10-03 05:14:07 -04:00
updated for version 7.2-252
This commit is contained in:
@@ -174,6 +174,11 @@ buf_init_chartab(buf, global)
|
|||||||
if (VIM_ISDIGIT(*p))
|
if (VIM_ISDIGIT(*p))
|
||||||
c = getdigits(&p);
|
c = getdigits(&p);
|
||||||
else
|
else
|
||||||
|
#ifdef FEAT_MBYTE
|
||||||
|
if (has_mbyte)
|
||||||
|
c = mb_ptr2char_adv(&p);
|
||||||
|
else
|
||||||
|
#endif
|
||||||
c = *p++;
|
c = *p++;
|
||||||
c2 = -1;
|
c2 = -1;
|
||||||
if (*p == '-' && p[1] != NUL)
|
if (*p == '-' && p[1] != NUL)
|
||||||
|
@@ -676,6 +676,8 @@ static char *(features[]) =
|
|||||||
|
|
||||||
static int included_patches[] =
|
static int included_patches[] =
|
||||||
{ /* Add new patch number below this line */
|
{ /* Add new patch number below this line */
|
||||||
|
/**/
|
||||||
|
252,
|
||||||
/**/
|
/**/
|
||||||
251,
|
251,
|
||||||
/**/
|
/**/
|
||||||
|
Reference in New Issue
Block a user