From: Bram Moolenaar Date: Fri, 11 Sep 2009 12:02:34 +0000 (+0000) Subject: updated for version 7.2-252 X-Git-Tag: v7.2.252 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=183bb3e4b60ae78549038c97937a52619675a575;p=vim updated for version 7.2-252 --- diff --git a/src/charset.c b/src/charset.c index bac1a20ff..0535d4cfc 100644 --- a/src/charset.c +++ b/src/charset.c @@ -174,6 +174,11 @@ buf_init_chartab(buf, global) if (VIM_ISDIGIT(*p)) c = getdigits(&p); else +#ifdef FEAT_MBYTE + if (has_mbyte) + c = mb_ptr2char_adv(&p); + else +#endif c = *p++; c2 = -1; if (*p == '-' && p[1] != NUL) diff --git a/src/version.c b/src/version.c index 16e319d1d..70124e9f3 100644 --- a/src/version.c +++ b/src/version.c @@ -676,6 +676,8 @@ static char *(features[]) = static int included_patches[] = { /* Add new patch number below this line */ +/**/ + 252, /**/ 251, /**/