From 9a149791fc8efd6bc4998e6769536f069f253e46 Mon Sep 17 00:00:00 2001 From: Bram Moolenaar Date: Tue, 10 Jul 2007 10:38:02 +0000 Subject: [PATCH] updated for version 7.1-023 --- src/search.c | 2 +- src/version.c | 2 ++ 2 files changed, 3 insertions(+), 1 deletion(-) diff --git a/src/search.c b/src/search.c index ff9eb6abb..9f6c997a5 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 3a14e6402..0e02631c5 100644 --- a/src/version.c +++ b/src/version.c @@ -666,6 +666,8 @@ static char *(features[]) = static int included_patches[] = { /* Add new patch number below this line */ +/**/ + 23, /**/ 22, /**/ -- 2.50.1