comparison src/tag.c @ 10134:95e9be4bc490 v7.4.2338

commit https://github.com/vim/vim/commit/7947312871e7d01cdba058199904c212ec32f1c0 Author: Bram Moolenaar <Bram@vim.org> Date: Tue Sep 6 21:32:11 2016 +0200 patch 7.4.2338 Problem: Can't build with small features. (John Marriott) Solution: Nearly always define FEAT_TAG_BINS.
author Christian Brabandt <cb@256bit.org>
date Tue, 06 Sep 2016 21:45:06 +0200
parents 9a13895ee8d7
children 154d5a2e7395
comparison
equal deleted inserted replaced
10133:898d3f00ff4b 10134:95e9be4bc490
1576 /* 1576 /*
1577 * Read and parse the lines in the file one by one 1577 * Read and parse the lines in the file one by one
1578 */ 1578 */
1579 for (;;) 1579 for (;;)
1580 { 1580 {
1581 #ifdef FEAT_TAG_BINS
1581 /* check for CTRL-C typed, more often when jumping around */ 1582 /* check for CTRL-C typed, more often when jumping around */
1582 if (state == TS_BINARY || state == TS_SKIP_BACK) 1583 if (state == TS_BINARY || state == TS_SKIP_BACK)
1583 line_breakcheck(); 1584 line_breakcheck();
1584 else 1585 else
1586 #endif
1585 fast_breakcheck(); 1587 fast_breakcheck();
1586 #ifdef FEAT_INS_EXPAND 1588 #ifdef FEAT_INS_EXPAND
1587 if ((flags & TAG_INS_COMP)) /* Double brackets for gcc */ 1589 if ((flags & TAG_INS_COMP)) /* Double brackets for gcc */
1588 ins_compl_check_keys(30); 1590 ins_compl_check_keys(30);
1589 if (got_int || compl_interrupted) 1591 if (got_int || compl_interrupted)