changeset 2756:d72d709f0e18 v7.3.154

updated for version 7.3.154 Problem: Can't compile with tiny features. (Tony Mechelynck) Solution: Move #define outside of #ifdef.
author Bram Moolenaar <bram@vim.org>
date Sat, 02 Apr 2011 15:12:50 +0200
parents 1772d74dcb35
children 74503f6ee649
files src/syntax.c src/version.c
diffstat 2 files changed, 8 insertions(+), 6 deletions(-) [+]
line wrap: on
line diff
--- a/src/syntax.c
+++ b/src/syntax.c
@@ -68,6 +68,8 @@ static garray_T highlight_ga;	/* highlig
 
 #define HL_TABLE() ((struct hl_group *)((highlight_ga.ga_data)))
 
+#define MAX_HL_ID       20000	/* maximum value for a highlight ID. */
+
 #ifdef FEAT_CMDL_COMPL
 /* Flags to indicate an additional string for highlight name completion. */
 static int include_none = 0;	/* when 1 include "None" */
@@ -225,12 +227,11 @@ typedef struct syn_cluster_S
  * 22000 - 22999  CONTAINED indicator (current_syn_inc_tag added)
  * 23000 - 32767  cluster IDs (subtract SYNID_CLUSTER for the cluster ID)
  */
-#define SYNID_ALLBUT	20000	    /* syntax group ID for contains=ALLBUT */
+#define SYNID_ALLBUT	MAX_HL_ID   /* syntax group ID for contains=ALLBUT */
 #define SYNID_TOP	21000	    /* syntax group ID for contains=TOP */
 #define SYNID_CONTAINED	22000	    /* syntax group ID for contains=CONTAINED */
 #define SYNID_CLUSTER	23000	    /* first syntax group ID for clusters */
 
-#define MAX_SYNID       SYNID_ALLBUT
 #define MAX_SYN_INC_TAG	999	    /* maximum before the above overflow */
 #define MAX_CLUSTER_ID  (32767 - SYNID_CLUSTER)
 
@@ -6462,7 +6463,6 @@ syn_get_foldlevel(wp, lnum)
 
 #endif /* FEAT_SYN_HL */
 
-
 /**************************************
  *  Highlighting stuff		      *
  **************************************/
@@ -8996,9 +8996,9 @@ syn_add_group(name)
 	highlight_ga.ga_growsize = 10;
     }
 
-    if (highlight_ga.ga_len >= MAX_SYNID)
-    {
-	EMSG(_("E849: Too many syntax groups"));
+    if (highlight_ga.ga_len >= MAX_HL_ID)
+    {
+	EMSG(_("E849: Too many highlight and syntax groups"));
 	vim_free(name);
 	return 0;
     }
--- a/src/version.c
+++ b/src/version.c
@@ -715,6 +715,8 @@ static char *(features[]) =
 static int included_patches[] =
 {   /* Add new patch number below this line */
 /**/
+    154,
+/**/
     153,
 /**/
     152,