changeset 6251:d5eba03293a6 v7.4.460

updated for version 7.4.460 Problem: Can't build without the quickfix feature. (Erik Falor) Solution: Add a #ifdef.
author Bram Moolenaar <bram@vim.org>
date Wed, 24 Sep 2014 13:26:44 +0200
parents 187798e5e4b5
children 3d9d6241de2b
files src/version.c src/window.c
diffstat 2 files changed, 4 insertions(+), 0 deletions(-) [+]
line wrap: on
line diff
--- a/src/version.c
+++ b/src/version.c
@@ -742,6 +742,8 @@ static char *(features[]) =
 static int included_patches[] =
 {   /* Add new patch number below this line */
 /**/
+    460,
+/**/
     459,
 /**/
     458,
--- a/src/window.c
+++ b/src/window.c
@@ -484,7 +484,9 @@ newwindow:
 		    postponed_split = Prenum;
 		else
 		    postponed_split = -1;
+#ifdef FEAT_QUICKFIX
 		g_do_tagpreview = 0;
+#endif
 
 		/* Execute the command right here, required when "wincmd ]"
 		 * was used in a function. */