From: Bram Moolenaar Date: Wed, 6 Feb 2013 11:14:48 +0000 (+0100) Subject: updated for version 7.3.799 X-Git-Tag: v7.3.799 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=9c2e6cc6edb939828032c9179fe05b57fa84a384;p=vim updated for version 7.3.799 Problem: The color column is not correct when entering a buffer. (Ben Fritz) Solution: Call check_colorcolumn() if 'textwidth' changed. (Christian Brabandt) --- diff --git a/src/buffer.c b/src/buffer.c index 7f0c106e1..f4713a1f7 100644 --- a/src/buffer.c +++ b/src/buffer.c @@ -1441,6 +1441,8 @@ set_curbuf(buf, action) enter_buffer(buf) buf_T *buf; { + long old_tw = curbuf->b_p_tw; + /* Copy buffer and window local option values. Not for a help buffer. */ buf_copy_options(buf, BCO_ENTER | BCO_NOHELP); if (!buf->b_help) @@ -1464,6 +1466,8 @@ enter_buffer(buf) #ifdef FEAT_SYN_HL curwin->w_s = &(buf->b_s); + if (old_tw != buf->b_p_tw) + check_colorcolumn(curwin); #endif /* Cursor on first line by default. */ diff --git a/src/version.c b/src/version.c index 2f17d2c4e..7689b5601 100644 --- a/src/version.c +++ b/src/version.c @@ -725,6 +725,8 @@ static char *(features[]) = static int included_patches[] = { /* Add new patch number below this line */ +/**/ + 799, /**/ 798, /**/