mirror of
https://github.com/vim/vim.git
synced 2025-11-14 23:04:02 -05:00
updated for version 7.1-164
This commit is contained in:
@@ -2770,7 +2770,8 @@ skipchr()
|
|||||||
{
|
{
|
||||||
#ifdef FEAT_MBYTE
|
#ifdef FEAT_MBYTE
|
||||||
if (enc_utf8)
|
if (enc_utf8)
|
||||||
prevchr_len += utf_char2len(mb_ptr2char(regparse + prevchr_len));
|
/* exclude composing chars that mb_ptr2len does include */
|
||||||
|
prevchr_len += utf_ptr2len(regparse + prevchr_len);
|
||||||
else if (has_mbyte)
|
else if (has_mbyte)
|
||||||
prevchr_len += (*mb_ptr2len)(regparse + prevchr_len);
|
prevchr_len += (*mb_ptr2len)(regparse + prevchr_len);
|
||||||
else
|
else
|
||||||
|
|||||||
@@ -666,6 +666,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 */
|
||||||
|
/**/
|
||||||
|
164,
|
||||||
/**/
|
/**/
|
||||||
163,
|
163,
|
||||||
/**/
|
/**/
|
||||||
|
|||||||
Reference in New Issue
Block a user