commit | 5075aad6a8ec0f8640f4b873a619e42a182cc88d | [log] [tgz] |
---|---|---|
author | Bram Moolenaar <Bram@vim.org> | Wed Jan 27 15:58:13 2010 +0100 |
committer | Bram Moolenaar <Bram@vim.org> | Wed Jan 27 15:58:13 2010 +0100 |
tree | 387d11b771f457b805f546e8819889212cb911b7 | |
parent | 7ad01410dab090dde43788671879d60a8b09d80f [diff] [blame] |
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 index d680cfb..491a8d8 100644 --- a/src/option.c +++ b/src/option.c
@@ -6410,6 +6410,9 @@ } # endif curbuf->b_help = (curbuf->b_p_bt[0] == 'h'); +# ifdef FEAT_TITLE + redraw_titles(); +# endif } } #endif