diff src/structs.h @ 4766:ec24ff78a79c v7.3.1130

updated for version 7.3.1130 Problem: Can't build with anything but huge features. Solution: Check for FEAT_PROFILE. (Yasuhiro Matsumoto)
author Bram Moolenaar <bram@vim.org>
date Thu, 06 Jun 2013 14:55:19 +0200
parents f824cb97eb92
children e79a20f07daa
line wrap: on
line diff
--- a/src/structs.h
+++ b/src/structs.h
@@ -1206,7 +1206,7 @@ struct dictvar_S
 typedef struct qf_info_S qf_info_T;
 #endif
 
-#ifdef FEAT_RELTIME
+#ifdef FEAT_PROFILE
 /*
  * Used for :syntime: timing of executing a syntax pattern.
  */
@@ -1242,7 +1242,7 @@ typedef struct {
     long	b_syn_sync_linebreaks;	/* offset for multi-line pattern */
     char_u	*b_syn_linecont_pat;	/* line continuation pattern */
     regprog_T	*b_syn_linecont_prog;	/* line continuation program */
-#ifdef FEAT_RELTIME
+#ifdef FEAT_PROFILE
     syn_time_T  b_syn_linecont_time;
 #endif
     int		b_syn_linecont_ic;	/* ignore-case flag for above */