summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBram Moolenaar <Bram@vim.org>2019-09-04 11:51:17 +0200
committerBram Moolenaar <Bram@vim.org>2019-09-04 11:51:17 +0200
commit61c18652c9374a60ad5ed07a5644217b921c1596 (patch)
tree696c199cc9fbeb83669e0b4d03f7a6a21b79545f
parent5d712e4672c6c8cf7f35cfb7d8eb7e8aa24062ac (diff)
downloadvim-git-61c18652c9374a60ad5ed07a5644217b921c1596.tar.gz
patch 8.1.1973: cannot build without the quickfix featurev8.1.1973
Problem: Cannot build without the quickfix feature. Solution: Remove #ifdef for qf_info_T.
-rw-r--r--src/structs.h2
-rw-r--r--src/version.c2
2 files changed, 2 insertions, 2 deletions
diff --git a/src/structs.h b/src/structs.h
index e599550a1..ce618b903 100644
--- a/src/structs.h
+++ b/src/structs.h
@@ -2061,9 +2061,7 @@ typedef struct
# define B_SPELL(buf) (0)
#endif
-#ifdef FEAT_QUICKFIX
typedef struct qf_info_S qf_info_T;
-#endif
#ifdef FEAT_PROFILE
/*
diff --git a/src/version.c b/src/version.c
index 321da5103..c9860acec 100644
--- a/src/version.c
+++ b/src/version.c
@@ -762,6 +762,8 @@ static char *(features[]) =
static int included_patches[] =
{ /* Add new patch number below this line */
/**/
+ 1973,
+/**/
1972,
/**/
1971,