0
0
mirror of https://github.com/vim/vim.git synced 2025-09-23 03:43:49 -04:00

updated for version 7.1-023

This commit is contained in:
Bram Moolenaar
2007-07-10 10:38:02 +00:00
parent bf44417987
commit 9a149791fc
2 changed files with 3 additions and 1 deletions

View File

@@ -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;
/*