summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--src/syntax.c4
-rw-r--r--src/version.c2
2 files changed, 4 insertions, 2 deletions
diff --git a/src/syntax.c b/src/syntax.c
index 2245dc625..f4acc7ed9 100644
--- a/src/syntax.c
+++ b/src/syntax.c
@@ -6707,7 +6707,7 @@ syntime_report(void)
{
int idx;
synpat_T *spp;
-# ifdef FEAT_FLOAT
+# if defined(FEAT_RELTIME) && defined(FEAT_FLOAT)
proftime_T tm;
# endif
int len;
@@ -6737,7 +6737,7 @@ syntime_report(void)
p->match = spp->sp_time.match;
total_count += spp->sp_time.count;
p->slowest = spp->sp_time.slowest;
-# ifdef FEAT_FLOAT
+# if defined(FEAT_RELTIME) && defined(FEAT_FLOAT)
profile_divide(&spp->sp_time.total, spp->sp_time.count, &tm);
p->average = tm;
# endif
diff --git a/src/version.c b/src/version.c
index ab2300bd4..fcd7243c8 100644
--- a/src/version.c
+++ b/src/version.c
@@ -751,6 +751,8 @@ static char *(features[]) =
static int included_patches[] =
{ /* Add new patch number below this line */
/**/
+ 2042,
+/**/
2041,
/**/
2040,