Mercurial > vim
changeset 1945:9d6a886aceb2 v7.2.242
updated for version 7.2-242
author | vimboss |
---|---|
date | Wed, 29 Jul 2009 13:42:05 +0000 |
parents | 40a8e388692b |
children | a9f561ffbc53 |
files | src/option.c src/version.c |
diffstat | 2 files changed, 19 insertions(+), 2 deletions(-) [+] |
line wrap: on
line diff
--- 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;