commit | f837ef9e7b1a8de49f194e8d3b3cca397e97d2af | [log] [tgz] |
---|---|---|
author | Bram Moolenaar <Bram@vim.org> | Wed Mar 11 16:47:21 2009 +0000 |
committer | Bram Moolenaar <Bram@vim.org> | Wed Mar 11 16:47:21 2009 +0000 |
tree | d4cb4bdd50ea92c7cf86acfa249ec5ebc83aedaf | |
parent | 552c8a567733abb21c0df4bf2174ad5cbab1cdfb [diff] [blame] |
updated for version 7.2-140
diff --git a/src/screen.c b/src/screen.c index 6d408eb..79cd689 100644 --- a/src/screen.c +++ b/src/screen.c
@@ -3555,7 +3555,8 @@ /* Use line_attr when not in the Visual or 'incsearch' area * (area_attr may be 0 when "noinvcur" is set). */ else if (line_attr != 0 && ((fromcol == -10 && tocol == MAXCOL) - || (vcol < fromcol || vcol >= tocol))) + || vcol < fromcol || vcol_prev < fromcol_prev + || vcol >= tocol)) char_attr = line_attr; #endif else