summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorBram Moolenaar <Bram@vim.org>2007-07-10 10:38:02 +0000
committerBram Moolenaar <Bram@vim.org>2007-07-10 10:38:02 +0000
commit9a149791fc8efd6bc4998e6769536f069f253e46 (patch)
tree160d4cdcdba692a565cfa265772abd8f70c63290
parentbf4441798722b0eaf9010b6f5f37bdb0cd320404 (diff)
updated for version 7.1-023v7.1.023
-rw-r--r--src/search.c2
-rw-r--r--src/version.c2
2 files changed, 3 insertions, 1 deletions
diff --git a/src/search.c b/src/search.c
index ff9eb6abb5..9f6c997a5d 100644
--- a/src/search.c
+++ b/src/search.c
@@ -2795,7 +2795,7 @@ fwd_word(count, bigword, eol)
i = inc_cursor();
if (i == -1 || (i >= 1 && last_line)) /* started at last char in file */
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;
/*
diff --git a/src/version.c b/src/version.c
index 3a14e6402a..0e02631c56 100644
--- a/src/version.c
+++ b/src/version.c
@@ -667,6 +667,8 @@ static char *(features[]) =
static int included_patches[] =
{ /* Add new patch number below this line */
/**/
+ 23,
+/**/
22,
/**/
21,