1
0
forked from aniani/vim

patch 9.0.0262: build failure without the +quickfix feature

Problem:    Build failure without the +quickfix feature.
Solution:   Add #ifdef.
This commit is contained in:
Bram Moolenaar 2022-08-25 13:54:16 +01:00
parent 2eddbacd6d
commit 2e6dcbc445
2 changed files with 4 additions and 0 deletions

View File

@ -222,7 +222,9 @@ open_buffer(
// Read the file if there is one.
if (curbuf->b_ffname != NULL
#ifdef FEAT_QUICKFIX
&& !bt_quickfix(curbuf)
#endif
&& !bt_nofilename(curbuf)
#ifdef FEAT_NETBEANS_INTG
&& netbeansReadFile

View File

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