mirror of
https://github.com/vim/vim.git
synced 2025-07-26 11:04:33 -04:00
patch 9.0.1275: the code for setting options is too complicated
Problem: The code for setting options is too complicated. Solution: Refactor the do_set() function. (Yegappan Lakshmanan, Lewis Russell, closes #11932)
This commit is contained in:
parent
be4e01637e
commit
78012f55fa
1000
src/option.c
1000
src/option.c
File diff suppressed because it is too large
Load Diff
@ -680,7 +680,8 @@ did_set_term(int *opt_idx, long_u *free_oldval)
|
|||||||
// Both 'term' and 'ttytype' point to T_NAME, only set the
|
// Both 'term' and 'ttytype' point to T_NAME, only set the
|
||||||
// P_ALLOCED flag on 'term'.
|
// P_ALLOCED flag on 'term'.
|
||||||
*opt_idx = findoption((char_u *)"term");
|
*opt_idx = findoption((char_u *)"term");
|
||||||
*free_oldval = (get_option_flags(*opt_idx) & P_ALLOCED);
|
if (*opt_idx >= 0)
|
||||||
|
*free_oldval = (get_option_flags(*opt_idx) & P_ALLOCED);
|
||||||
}
|
}
|
||||||
|
|
||||||
return errmsg;
|
return errmsg;
|
||||||
|
@ -695,6 +695,8 @@ static char *(features[]) =
|
|||||||
|
|
||||||
static int included_patches[] =
|
static int included_patches[] =
|
||||||
{ /* Add new patch number below this line */
|
{ /* Add new patch number below this line */
|
||||||
|
/**/
|
||||||
|
1275,
|
||||||
/**/
|
/**/
|
||||||
1274,
|
1274,
|
||||||
/**/
|
/**/
|
||||||
|
Loading…
x
Reference in New Issue
Block a user