# HG changeset patch # User Bram Moolenaar # Date 1264604293 -3600 # Node ID 1da25369227bead09cf603ebfa93ebe1d206c871 # Parent 142c46991ec06e842ebe92ea685109ffdd0fe7f8 updated for version 7.2.345 Problem: Tab line is not updated when the value of 'bt' is changed. Solution: Call redraw_titles(). (Lech Lorens) diff --git a/src/option.c b/src/option.c --- a/src/option.c +++ b/src/option.c @@ -6410,6 +6410,9 @@ did_set_string_option(opt_idx, varp, new } # endif curbuf->b_help = (curbuf->b_p_bt[0] == 'h'); +# ifdef FEAT_TITLE + redraw_titles(); +# endif } } #endif diff --git a/src/version.c b/src/version.c --- a/src/version.c +++ b/src/version.c @@ -682,6 +682,8 @@ static char *(features[]) = static int included_patches[] = { /* Add new patch number below this line */ /**/ + 345, +/**/ 344, /**/ 343,