aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--src/nvim/screen.c3
1 files changed, 1 insertions, 2 deletions
diff --git a/src/nvim/screen.c b/src/nvim/screen.c
index 0672187975..9c3ac29250 100644
--- a/src/nvim/screen.c
+++ b/src/nvim/screen.c
@@ -3542,8 +3542,7 @@ win_line (
tab_len += vcol_off;
}
// boguscols before FIX_FOR_BOGUSCOLS macro from above.
- if (wp->w_p_list && lcs_tab1 && old_boguscols > 0
- && n_extra > tab_len) {
+ if (lcs_tab1 && old_boguscols > 0 && n_extra > tab_len) {
tab_len += n_extra - tab_len;
}