# HG changeset patch # User Bram Moolenaar # Date 1339002350 -7200 # Node ID 0a364618c0e59fa777f526c99bee608bb5cf55ce # Parent 060f9b63bf92db20641bbb325576cc8f7165f9c2 updated for version 7.3.546 Problem: Bogus line break. Solution: Remove the line break. diff --git a/src/screen.c b/src/screen.c --- a/src/screen.c +++ b/src/screen.c @@ -3228,8 +3228,7 @@ win_line(wp, lnum, startrow, endrow, noc /* 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 { diff --git a/src/version.c b/src/version.c --- a/src/version.c +++ b/src/version.c @@ -715,6 +715,8 @@ static char *(features[]) = static int included_patches[] = { /* Add new patch number below this line */ /**/ + 546, +/**/ 545, /**/ 544,