]> granicus.if.org Git - vim/commitdiff
updated for version 7.4.460 v7.4.460
authorBram Moolenaar <Bram@vim.org>
Wed, 24 Sep 2014 11:26:44 +0000 (13:26 +0200)
committerBram Moolenaar <Bram@vim.org>
Wed, 24 Sep 2014 11:26:44 +0000 (13:26 +0200)
Problem:    Can't build without the quickfix feature. (Erik Falor)
Solution:   Add a #ifdef.

src/version.c
src/window.c

index a9f83a20385839e3d737b3e7eadbcac311d52e70..4c5324a63db11707bf23c65c5e09ec4397c40aa3 100644 (file)
@@ -741,6 +741,8 @@ static char *(features[]) =
 
 static int included_patches[] =
 {   /* Add new patch number below this line */
+/**/
+    460,
 /**/
     459,
 /**/
index 4bc2e6c4129d5389ac06c3369fc972dae35984fb..5a2d8a42b5d17810c92c56f175cba485ac5943f8 100644 (file)
@@ -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. */