mirror of
https://github.com/vim/vim.git
synced 2025-09-24 03:44:06 -04:00
updated for version 7.4.460
Problem: Can't build without the quickfix feature. (Erik Falor) Solution: Add a #ifdef.
This commit is contained in:
@@ -741,6 +741,8 @@ static char *(features[]) =
|
|||||||
|
|
||||||
static int included_patches[] =
|
static int included_patches[] =
|
||||||
{ /* Add new patch number below this line */
|
{ /* Add new patch number below this line */
|
||||||
|
/**/
|
||||||
|
460,
|
||||||
/**/
|
/**/
|
||||||
459,
|
459,
|
||||||
/**/
|
/**/
|
||||||
|
@@ -484,7 +484,9 @@ newwindow:
|
|||||||
postponed_split = Prenum;
|
postponed_split = Prenum;
|
||||||
else
|
else
|
||||||
postponed_split = -1;
|
postponed_split = -1;
|
||||||
|
#ifdef FEAT_QUICKFIX
|
||||||
g_do_tagpreview = 0;
|
g_do_tagpreview = 0;
|
||||||
|
#endif
|
||||||
|
|
||||||
/* Execute the command right here, required when "wincmd ]"
|
/* Execute the command right here, required when "wincmd ]"
|
||||||
* was used in a function. */
|
* was used in a function. */
|
||||||
|
Reference in New Issue
Block a user