diff options
author | Bram Moolenaar <Bram@vim.org> | 2019-04-07 14:19:14 +0200 |
---|---|---|
committer | Bram Moolenaar <Bram@vim.org> | 2019-04-07 14:19:14 +0200 |
commit | d85c396d5149a87677e30742f92b2ecfe28af8a6 (patch) | |
tree | 2501ccf03d4012c6f00c94154a6514d33b9469cd /src/buffer.c | |
parent | 39803d82dbb215d2eea9fcd6cf2961b71515a438 (diff) | |
download | vim-git-d85c396d5149a87677e30742f92b2ecfe28af8a6.tar.gz |
patch 8.1.1135: build failure for small versionv8.1.1135
Problem: Build failure for small version. (Tony Mechelynck)
Solution: Add #ifdef.
Diffstat (limited to 'src/buffer.c')
-rw-r--r-- | src/buffer.c | 2 |
1 files changed, 2 insertions, 0 deletions
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()); } |