]> granicus.if.org Git - vim/commitdiff
patch 7.4.2338 v7.4.2338
authorBram Moolenaar <Bram@vim.org>
Tue, 6 Sep 2016 19:32:11 +0000 (21:32 +0200)
committerBram Moolenaar <Bram@vim.org>
Tue, 6 Sep 2016 19:32:11 +0000 (21:32 +0200)
Problem:    Can't build with small features. (John Marriott)
Solution:   Nearly always define FEAT_TAG_BINS.

src/feature.h
src/tag.c
src/version.c

index 21114c2420e0205cd2c52b19b86f6d3524222c45..138279e46242a3c7cb7585b8b2c3f34fed1daffa 100644 (file)
  * sorted by character values.  I'm not sure how to fix this. Should we really
  * do a EBCDIC to ASCII conversion for this??
  */
-#if defined(FEAT_NORMAL) && !defined(EBCDIC)
+#if !defined(EBCDIC)
 # define FEAT_TAG_BINS
 #endif
 
index 3f1dfa9f62a356d73b1f56e72c84acf2b80e7ee9..d679686a5e037ae9b0c8180aecb6e1fd425a0a26 100644 (file)
--- a/src/tag.c
+++ b/src/tag.c
@@ -1578,10 +1578,12 @@ find_tags(
         */
        for (;;)
        {
+#ifdef FEAT_TAG_BINS
            /* check for CTRL-C typed, more often when jumping around */
            if (state == TS_BINARY || state == TS_SKIP_BACK)
                line_breakcheck();
            else
+#endif
                fast_breakcheck();
 #ifdef FEAT_INS_EXPAND
            if ((flags & TAG_INS_COMP)) /* Double brackets for gcc */
index 3331ee35846174b6f0093568a69115e34e6b9243..79628cba7991a6b06465788cdff4fe56aa14d83d 100644 (file)
@@ -763,6 +763,8 @@ static char *(features[]) =
 
 static int included_patches[] =
 {   /* Add new patch number below this line */
+/**/
+    2338,
 /**/
     2337,
 /**/