0
0
mirror of https://github.com/vim/vim.git synced 2025-09-24 03:44:06 -04:00

updated for version 7.3.546

Problem:    Bogus line break.
Solution:   Remove the line break.
This commit is contained in:
Bram Moolenaar
2012-06-06 19:05:50 +02:00
parent 362ce48048
commit 3b393a0b53
2 changed files with 3 additions and 2 deletions

View File

@@ -3228,8 +3228,7 @@ win_line(wp, lnum, startrow, endrow, nochange)
/* no bad word found at line start, don't check until end of a
* word */
spell_hlf = HLF_COUNT;
word_end = (int)(spell_to_word_end(ptr, wp)
- line + 1);
word_end = (int)(spell_to_word_end(ptr, wp) - line + 1);
}
else
{