mirror of
https://github.com/vim/vim.git
synced 2025-09-24 03:44:06 -04:00
updated for version 7.1-023
This commit is contained in:
@@ -2795,7 +2795,7 @@ fwd_word(count, bigword, eol)
|
|||||||
i = inc_cursor();
|
i = inc_cursor();
|
||||||
if (i == -1 || (i >= 1 && last_line)) /* started at last char in file */
|
if (i == -1 || (i >= 1 && last_line)) /* started at last char in file */
|
||||||
return FAIL;
|
return FAIL;
|
||||||
if (i == 1 && eol && count == 0) /* started at last char in line */
|
if (i >= 1 && eol && count == 0) /* started at last char in line */
|
||||||
return OK;
|
return OK;
|
||||||
|
|
||||||
/*
|
/*
|
||||||
|
@@ -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 */
|
||||||
|
/**/
|
||||||
|
23,
|
||||||
/**/
|
/**/
|
||||||
22,
|
22,
|
||||||
/**/
|
/**/
|
||||||
|
Reference in New Issue
Block a user