comparison src/tag.c @ 15636:6f1c7e9a6393 v8.1.0826

patch 8.1.0826: too many #ifdefs commit https://github.com/vim/vim/commit/29ddebef4038d2d2b3bc9d8d3b0109f4046d6fbf Author: Bram Moolenaar <Bram@vim.org> Date: Sat Jan 26 17:28:26 2019 +0100 patch 8.1.0826: too many #ifdefs Problem: Too many #ifdefs. Solution: Graduate FEAT_VIRTUALEDIT. Adds about 10Kbyte to the code.
author Bram Moolenaar <Bram@vim.org>
date Sat, 26 Jan 2019 17:30:15 +0100
parents 62b3805506b3
children 37d31fc37a5a
comparison
equal deleted inserted replaced
15635:c51d2a06f5f9 15636:6f1c7e9a6393
83 #if defined(FEAT_QUICKFIX) 83 #if defined(FEAT_QUICKFIX)
84 /* 84 /*
85 * Tag for preview window is remembered separately, to avoid messing up the 85 * Tag for preview window is remembered separately, to avoid messing up the
86 * normal tagstack. 86 * normal tagstack.
87 */ 87 */
88 static taggy_T ptag_entry = {NULL, {INIT_POS_T(0, 0, 0), 0}, 0, 0}; 88 static taggy_T ptag_entry = {NULL, {{0, 0, 0}, 0}, 0, 0};
89 #endif 89 #endif
90 90
91 /* 91 /*
92 * Jump to tag; handling of tag commands and tag stack 92 * Jump to tag; handling of tag commands and tag stack
93 * 93 *