From: Bram Moolenaar Date: Thu, 5 May 2011 15:32:44 +0000 (+0200) Subject: updated for version 7.3.175 X-Git-Tag: v7.3.175 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=1701e4069b94d8d03d02a9a6af99c48d360853cd;p=vim updated for version 7.3.175 Problem: When 'colorcolumn' is set locally to a window, ":new" opens a window with the same highlighting but 'colorcolumn' is empty. (Tyru) Solution: Call check_colorcolumn() after clearing and copying options. (Christian Brabandt) --- diff --git a/src/buffer.c b/src/buffer.c index f92512983..254331ef2 100644 --- a/src/buffer.c +++ b/src/buffer.c @@ -2527,6 +2527,9 @@ get_winopts(buf) if (p_fdls >= 0) curwin->w_p_fdl = p_fdls; #endif +#ifdef FEAT_SYN_HL + check_colorcolumn(curwin); +#endif } /* diff --git a/src/version.c b/src/version.c index b6c460997..37e09b359 100644 --- a/src/version.c +++ b/src/version.c @@ -714,6 +714,8 @@ static char *(features[]) = static int included_patches[] = { /* Add new patch number below this line */ +/**/ + 175, /**/ 174, /**/