# HG changeset patch # User vimboss # Date 1248874925 0 # Node ID 9d6a886aceb23fcaf8f64f9cf1ebf3f83d14b2da # Parent 40a8e388692b53d36104e9c9b6ed351c01707308 updated for version 7.2-242 diff --git a/src/option.c b/src/option.c --- a/src/option.c +++ b/src/option.c @@ -7194,6 +7194,14 @@ set_bool_option(opt_idx, varp, value, op compatible_set(); } + /* 'list', 'number' */ + else if ((int *)varp == &curwin->w_p_list + || (int *)varp == &curwin->w_p_nu) + { + if (curwin->w_curswant != MAXCOL) + curwin->w_set_curswant = TRUE; + } + else if ((int *)varp == &curbuf->b_p_ro) { /* when 'readonly' is reset globally, also reset readonlymode */ @@ -7645,6 +7653,14 @@ set_bool_option(opt_idx, varp, value, op curbuf->b_p_imsearch = B_IMODE_USE_INSERT; # endif } + if (curwin->w_curswant != MAXCOL) + curwin->w_set_curswant = TRUE; + } + + else if ((int *)varp == &p_arshape) + { + if (curwin->w_curswant != MAXCOL) + curwin->w_set_curswant = TRUE; } #endif @@ -7655,8 +7671,7 @@ set_bool_option(opt_idx, varp, value, op options[opt_idx].flags |= P_WAS_SET; comp_col(); /* in case 'ruler' or 'showcmd' changed */ - if (curwin->w_curswant != MAXCOL) - curwin->w_set_curswant = TRUE; /* in case 'list' changed */ + check_redraw(options[opt_idx].flags); return NULL; diff --git a/src/version.c b/src/version.c --- a/src/version.c +++ b/src/version.c @@ -677,6 +677,8 @@ static char *(features[]) = static int included_patches[] = { /* Add new patch number below this line */ /**/ + 242, +/**/ 241, /**/ 240,