]> git.ipfire.org Git - thirdparty/vim.git/commitdiff
updated for version 7.4.567 v7.4.567
authorBram Moolenaar <Bram@vim.org>
Wed, 7 Jan 2015 18:04:28 +0000 (19:04 +0100)
committerBram Moolenaar <Bram@vim.org>
Wed, 7 Jan 2015 18:04:28 +0000 (19:04 +0100)
Problem:    Non-ascii vertical separater characters are always redrawn.
Solution:   Compare only the one byte that's stored. (Thiago Padilha)

src/screen.c
src/version.c

index 290dd1bd3d16aebd6eac88ad84694188330efdb2..bbf57b1121f5c7bc8ec8e60db6fa4e9c76ffcdd8 100644 (file)
@@ -6062,7 +6062,7 @@ screen_line(row, coloff, endcol, clear_width
            int c;
 
            c = fillchar_vsep(&hl);
-           if (ScreenLines[off_to] != c
+           if (ScreenLines[off_to] != (schar_T)c
 # ifdef FEAT_MBYTE
                    || (enc_utf8 && (int)ScreenLinesUC[off_to]
                                                       != (c >= 0x80 ? c : 0))
index 6339bcb724c99afdc68a2b29f8c537965fdd8e85..8b3ecbe90c6f179b350c51e0a02debcd9d842bd0 100644 (file)
@@ -741,6 +741,8 @@ static char *(features[]) =
 
 static int included_patches[] =
 {   /* Add new patch number below this line */
+/**/
+    567,
 /**/
     566,
 /**/