1
0
forked from aniani/vim

patch 8.2.3791: build error with +cindent but without +smartindent

Problem:    Build error with +cindent but without +smartindent.
Solution:   Move declaration of "do_cindent". (John Marriott)
This commit is contained in:
Bram Moolenaar
2021-12-12 19:10:44 +00:00
parent 3bb79dc191
commit d2439e0443
2 changed files with 5 additions and 3 deletions

View File

@@ -1388,6 +1388,9 @@ open_line(
char_u *p;
int saved_char = NUL; // init for GCC
pos_T *pos;
#ifdef FEAT_CINDENT
int do_cindent;
#endif
#ifdef FEAT_SMARTINDENT
int do_si = (!p_paste && curbuf->b_p_si
# ifdef FEAT_CINDENT
@@ -1397,9 +1400,6 @@ open_line(
&& *curbuf->b_p_inde == NUL
# endif
);
#ifdef FEAT_CINDENT
int do_cindent;
#endif
int no_si = FALSE; // reset did_si afterwards
int first_char = NUL; // init for GCC
#endif

View File

@@ -753,6 +753,8 @@ static char *(features[]) =
static int included_patches[] =
{ /* Add new patch number below this line */
/**/
3791,
/**/
3790,
/**/