From: Bram Moolenaar Date: Sun, 7 Apr 2019 12:19:14 +0000 (+0200) Subject: patch 8.1.1135: build failure for small version X-Git-Tag: v8.1.1135 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=d85c396d5149a87677e30742f92b2ecfe28af8a6;p=vim patch 8.1.1135: build failure for small version Problem: Build failure for small version. (Tony Mechelynck) Solution: Add #ifdef. --- diff --git a/src/buffer.c b/src/buffer.c index 187a8a648..869150006 100644 --- a/src/buffer.c +++ b/src/buffer.c @@ -1853,7 +1853,9 @@ curbuf_reusable(void) && curbuf->b_ffname == NULL && curbuf->b_nwindows <= 1 && (curbuf->b_ml.ml_mfp == NULL || BUFEMPTY()) +#if defined(FEAT_QUICKFIX) && !bt_quickfix(curbuf) +#endif && !curbufIsChanged()); } diff --git a/src/version.c b/src/version.c index 4ffd63b98..0107b8231 100644 --- a/src/version.c +++ b/src/version.c @@ -771,6 +771,8 @@ static char *(features[]) = static int included_patches[] = { /* Add new patch number below this line */ +/**/ + 1135, /**/ 1134, /**/