# HG changeset patch # User Bram Moolenaar # Date 1567591204 -7200 # Node ID 3bcd05fc2d56857f21cdfcb9f0acb58088191e29 # Parent 708e8cd5a67b67ad274f23333b9c5e7b07dc053d patch 8.1.1973: cannot build without the quickfix feature Commit: https://github.com/vim/vim/commit/61c18652c9374a60ad5ed07a5644217b921c1596 Author: Bram Moolenaar Date: Wed Sep 4 11:51:17 2019 +0200 patch 8.1.1973: cannot build without the quickfix feature Problem: Cannot build without the quickfix feature. Solution: Remove #ifdef for qf_info_T. diff --git a/src/structs.h b/src/structs.h --- 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 --- 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,