diff options
author | Bram Moolenaar <Bram@vim.org> | 2014-09-24 13:26:44 +0200 |
---|---|---|
committer | Bram Moolenaar <Bram@vim.org> | 2014-09-24 13:26:44 +0200 |
commit | da014b94417a6e270787704d24c2cd735bc83e38 (patch) | |
tree | 87a7fd7cf031c5cc481c87ad83902ad7cd352800 | |
parent | cddc91ccb4cc0989fa0169a343289873a6d2d651 (diff) | |
download | vim-da014b94417a6e270787704d24c2cd735bc83e38.zip |
updated for version 7.4.460
Problem: Can't build without the quickfix feature. (Erik Falor)
Solution: Add a #ifdef.
-rw-r--r-- | src/version.c | 2 | ||||
-rw-r--r-- | src/window.c | 2 |
2 files changed, 4 insertions, 0 deletions
diff --git a/src/version.c b/src/version.c index a9f83a203..4c5324a63 100644 --- 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, diff --git a/src/window.c b/src/window.c index 4bc2e6c41..5a2d8a42b 100644 --- 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. */ |