summaryrefslogtreecommitdiff
path: root/src/screen.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/screen.c')
-rw-r--r--src/screen.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/screen.c b/src/screen.c
index a62e6ec71..3df7f665d 100644
--- a/src/screen.c
+++ b/src/screen.c
@@ -4348,10 +4348,10 @@ win_line(wp, lnum, startrow, endrow, nochange)
#ifdef FEAT_CONCEAL
if ( wp->w_p_conceal
- && (!area_highlighting)
- && ((lnum != wp->w_cursor.lnum)
- || (curwin != wp) || (wp->w_buffer->b_p_ma == FALSE))
- && ((syntax_flags & HL_CONCEAL) != 0))
+ && !area_highlighting
+ && (lnum != wp->w_cursor.lnum
+ || curwin != wp || wp->w_buffer->b_p_ma == FALSE)
+ && (syntax_flags & HL_CONCEAL) != 0)
{
char_attr = conceal_attr;