mirror of
https://github.com/vim/vim.git
synced 2025-07-26 11:04:33 -04:00
patch 9.0.0921: missing defined(PROTO) in #ifdef
Problem: Missing defined(PROTO) in #ifdef. Solution: Adjust #ifdef so that proto works with different features. Clean up some preprocessor indenting.
This commit is contained in:
parent
b775e72439
commit
9af2ea80a8
@ -3925,7 +3925,8 @@ findoption(char_u *arg)
|
||||
return opt_idx;
|
||||
}
|
||||
|
||||
#if defined(FEAT_EVAL) || defined(FEAT_TCL) || defined(FEAT_MZSCHEME) || defined(FEAT_SPELL)
|
||||
#if defined(FEAT_EVAL) || defined(FEAT_TCL) || defined(FEAT_MZSCHEME) \
|
||||
|| defined(FEAT_SPELL) || defined(PROTO)
|
||||
/*
|
||||
* Get the value for an option.
|
||||
*
|
||||
@ -6875,7 +6876,8 @@ paste_option_changed(void)
|
||||
#ifdef FEAT_VARTABS
|
||||
if (buf->b_p_vsts_nopaste)
|
||||
vim_free(buf->b_p_vsts_nopaste);
|
||||
buf->b_p_vsts_nopaste = buf->b_p_vsts && buf->b_p_vsts != empty_option
|
||||
buf->b_p_vsts_nopaste =
|
||||
buf->b_p_vsts && buf->b_p_vsts != empty_option
|
||||
? vim_strsave(buf->b_p_vsts) : NULL;
|
||||
#endif
|
||||
}
|
||||
@ -6897,7 +6899,8 @@ paste_option_changed(void)
|
||||
#ifdef FEAT_VARTABS
|
||||
if (p_vsts_nopaste)
|
||||
vim_free(p_vsts_nopaste);
|
||||
p_vsts_nopaste = p_vsts && p_vsts != empty_option ? vim_strsave(p_vsts) : NULL;
|
||||
p_vsts_nopaste = p_vsts && p_vsts != empty_option
|
||||
? vim_strsave(p_vsts) : NULL;
|
||||
#endif
|
||||
}
|
||||
|
||||
|
@ -695,6 +695,8 @@ static char *(features[]) =
|
||||
|
||||
static int included_patches[] =
|
||||
{ /* Add new patch number below this line */
|
||||
/**/
|
||||
921,
|
||||
/**/
|
||||
920,
|
||||
/**/
|
||||
|
Loading…
x
Reference in New Issue
Block a user