We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 39803d8 commit d85c396Copy full SHA for d85c396
2 files changed
src/buffer.c
@@ -1853,7 +1853,9 @@ curbuf_reusable(void)
1853
&& curbuf->b_ffname == NULL
1854
&& curbuf->b_nwindows <= 1
1855
&& (curbuf->b_ml.ml_mfp == NULL || BUFEMPTY())
1856
+#if defined(FEAT_QUICKFIX)
1857
&& !bt_quickfix(curbuf)
1858
+#endif
1859
&& !curbufIsChanged());
1860
}
1861
src/version.c
@@ -771,6 +771,8 @@ static char *(features[]) =
771
772
static int included_patches[] =
773
{ /* Add new patch number below this line */
774
+/**/
775
+ 1135,
776
/**/
777
1134,
778
0 commit comments