comparison src/option.c @ 6205:db3b8fe8330e v7.4.438

updated for version 7.4.438 Problem: Cached values for 'cino' not reset for ":set all&". Solution: Call parse_cino(). (Yukihiro Nakadaira)
author Bram Moolenaar <bram@vim.org>
date Tue, 09 Sep 2014 17:33:07 +0200
parents e60327caf909
children 54194bd6ed60
comparison
equal deleted inserted replaced
6204:09f7a57d5910 6205:db3b8fe8330e
3642 /* The 'scroll' option must be computed for all windows. */ 3642 /* The 'scroll' option must be computed for all windows. */
3643 FOR_ALL_TAB_WINDOWS(tp, wp) 3643 FOR_ALL_TAB_WINDOWS(tp, wp)
3644 win_comp_scroll(wp); 3644 win_comp_scroll(wp);
3645 #else 3645 #else
3646 win_comp_scroll(curwin); 3646 win_comp_scroll(curwin);
3647 #endif
3648 #ifdef FEAT_CINDENT
3649 parse_cino(curbuf);
3647 #endif 3650 #endif
3648 } 3651 }
3649 3652
3650 /* 3653 /*
3651 * Set the Vi-default value of a string option. 3654 * Set the Vi-default value of a string option.