comparison src/structs.h @ 17954:3bcd05fc2d56 v8.1.1973

patch 8.1.1973: cannot build without the quickfix feature Commit: https://github.com/vim/vim/commit/61c18652c9374a60ad5ed07a5644217b921c1596 Author: Bram Moolenaar <Bram@vim.org> 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.
author Bram Moolenaar <Bram@vim.org>
date Wed, 04 Sep 2019 12:00:04 +0200
parents ec4248c4b92c
children 56032a704448
comparison
equal deleted inserted replaced
17953:708e8cd5a67b 17954:3bcd05fc2d56
2059 # define B_SPELL(buf) ((buf)->b_spell) 2059 # define B_SPELL(buf) ((buf)->b_spell)
2060 #else 2060 #else
2061 # define B_SPELL(buf) (0) 2061 # define B_SPELL(buf) (0)
2062 #endif 2062 #endif
2063 2063
2064 #ifdef FEAT_QUICKFIX
2065 typedef struct qf_info_S qf_info_T; 2064 typedef struct qf_info_S qf_info_T;
2066 #endif
2067 2065
2068 #ifdef FEAT_PROFILE 2066 #ifdef FEAT_PROFILE
2069 /* 2067 /*
2070 * Used for :syntime: timing of executing a syntax pattern. 2068 * Used for :syntime: timing of executing a syntax pattern.
2071 */ 2069 */