Skip to content

Commit d85c396

Browse files
committed
patch 8.1.1135: build failure for small version
Problem: Build failure for small version. (Tony Mechelynck) Solution: Add #ifdef.
1 parent 39803d8 commit d85c396

2 files changed

Lines changed: 4 additions & 0 deletions

File tree

src/buffer.c

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1853,7 +1853,9 @@ curbuf_reusable(void)
18531853
&& curbuf->b_ffname == NULL
18541854
&& curbuf->b_nwindows <= 1
18551855
&& (curbuf->b_ml.ml_mfp == NULL || BUFEMPTY())
1856+
#if defined(FEAT_QUICKFIX)
18561857
&& !bt_quickfix(curbuf)
1858+
#endif
18571859
&& !curbufIsChanged());
18581860
}
18591861

src/version.c

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -771,6 +771,8 @@ static char *(features[]) =
771771

772772
static int included_patches[] =
773773
{ /* Add new patch number below this line */
774+
/**/
775+
1135,
774776
/**/
775777
1134,
776778
/**/

0 commit comments

Comments
 (0)