diff options
author | Justin M. Keyes <justinkz@gmail.com> | 2015-01-13 09:38:19 -0500 |
---|---|---|
committer | Justin M. Keyes <justinkz@gmail.com> | 2015-01-13 09:38:19 -0500 |
commit | 9b4f6fbd33ebd452d472b0333accfcb34e01173b (patch) | |
tree | 7ecfeef41cb02b2a59fe7cb0ce66de67e1d33d27 /src/nvim/screen.c | |
parent | a99d33ad9a6a81400a04712f769180ef700787b4 (diff) | |
parent | 869d4c972eebb0b0c75425f005b2681dd9f8268b (diff) | |
download | rneovim-9b4f6fbd33ebd452d472b0333accfcb34e01173b.tar.gz rneovim-9b4f6fbd33ebd452d472b0333accfcb34e01173b.tar.bz2 rneovim-9b4f6fbd33ebd452d472b0333accfcb34e01173b.zip |
Merge pull request #1782 from fwalch/small-patches
vim-patch: Multiple small patches
Diffstat (limited to 'src/nvim/screen.c')
-rw-r--r-- | src/nvim/screen.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/nvim/screen.c b/src/nvim/screen.c index 855c09619e..52ded0aa49 100644 --- a/src/nvim/screen.c +++ b/src/nvim/screen.c @@ -4548,7 +4548,7 @@ static void screen_line(int row, int coloff, int endcol, int clear_width, int rl int c; c = fillchar_vsep(&hl); - if (ScreenLines[off_to] != c + if (ScreenLines[off_to] != (schar_T)c || (enc_utf8 && (int)ScreenLinesUC[off_to] != (c >= 0x80 ? c : 0)) || ScreenAttrs[off_to] != hl) { |