diff options
| author | Felipe Oliveira Carvalho <felipekde@gmail.com> | 2014-12-13 10:56:17 -0300 |
|---|---|---|
| committer | Felipe Oliveira Carvalho <felipekde@gmail.com> | 2014-12-13 23:36:11 -0300 |
| commit | 0bc40e660c0a74776ace86ad5e393755523c3803 (patch) | |
| tree | 94fd08577b5eed003b6f7eb3a7bcafcac7f20a66 /src/nvim/screen.c | |
| parent | 77135447e09903b45d1482da45869946212f7904 (diff) | |
| download | rneovim-0bc40e660c0a74776ace86ad5e393755523c3803.tar.gz rneovim-0bc40e660c0a74776ace86ad5e393755523c3803.tar.bz2 rneovim-0bc40e660c0a74776ace86ad5e393755523c3803.zip | |
Simple refatorings that didn't fit the pattern of the last commit
Diffstat (limited to 'src/nvim/screen.c')
| -rw-r--r-- | src/nvim/screen.c | 7 |
1 files changed, 2 insertions, 5 deletions
diff --git a/src/nvim/screen.c b/src/nvim/screen.c index 9e21676b2a..0148979335 100644 --- a/src/nvim/screen.c +++ b/src/nvim/screen.c @@ -4283,7 +4283,7 @@ static int comp_char_differs(int off_from, int off_to) */ static int char_needs_redraw(int off_from, int off_to, int cols) { - if (cols > 0 + return (cols > 0 && ((ScreenLines[off_from] != ScreenLines[off_to] || ScreenAttrs[off_from] != ScreenAttrs[off_to]) @@ -4299,10 +4299,7 @@ static int char_needs_redraw(int off_from, int off_to, int cols) && comp_char_differs(off_from, off_to)) || ((*mb_off2cells)(off_from, off_from + cols) > 1 && ScreenLines[off_from + 1] - != ScreenLines[off_to + 1]))) - )) - return TRUE; - return FALSE; + != ScreenLines[off_to + 1]))))); } /* |