From 0f7ff851cb721bb3c07261adbf82b591229f530d Mon Sep 17 00:00:00 2001 From: Sean Dewar Date: Sat, 12 Feb 2022 11:51:25 +0000 Subject: patch 8.2.4355: unnecessary call to check_colorcolumn() Problem: Unnecessary call to check_colorcolumn(). Solution: Remove the call. (Sean Dewar, closes #9748) --- src/option.c | 2 +- src/version.c | 2 ++ src/window.c | 4 ---- 3 files changed, 3 insertions(+), 5 deletions(-) diff --git a/src/option.c b/src/option.c index 03274a432..91ea4138d 100644 --- a/src/option.c +++ b/src/option.c @@ -5604,7 +5604,7 @@ win_copy_options(win_T *wp_from, win_T *wp_to) * After copying window options: update variables depending on options. */ void -after_copy_winopt(win_T *wp UNUSED) +after_copy_winopt(win_T *wp) { #ifdef FEAT_LINEBREAK briopt_check(wp); diff --git a/src/version.c b/src/version.c index 2476818eb..1fc3bc64f 100644 --- a/src/version.c +++ b/src/version.c @@ -750,6 +750,8 @@ static char *(features[]) = static int included_patches[] = { /* Add new patch number below this line */ +/**/ + 4355, /**/ 4354, /**/ diff --git a/src/window.c b/src/window.c index 4fb92e035..b2f01f67d 100644 --- a/src/window.c +++ b/src/window.c @@ -1414,10 +1414,6 @@ win_init(win_T *newp, win_T *oldp, int flags UNUSED) #endif win_init_some(newp, oldp); - -#ifdef FEAT_SYN_HL - check_colorcolumn(newp); -#endif #ifdef FEAT_TERMINAL term_update_wincolor(newp); #endif -- cgit v1.2.1