From: Bram Moolenaar Date: Thu, 6 Jun 2013 19:19:51 +0000 (+0200) Subject: updated for version 7.3.1135 X-Git-Tag: v7.3.1135 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=4e31296ffa9d6b0138a59d8abe0d2de6db93cb32;p=vim updated for version 7.3.1135 Problem: Compiler warning for unused argument. Solution: Add UNUSED. --- diff --git a/src/syntax.c b/src/syntax.c index 90b54afdb..6cd583498 100644 --- a/src/syntax.c +++ b/src/syntax.c @@ -3258,7 +3258,7 @@ syn_regexec(rmp, lnum, col, st) regmmatch_T *rmp; linenr_T lnum; colnr_T col; - syn_time_T *st; + syn_time_T *st UNUSED; { int r; #ifdef FEAT_PROFILE @@ -6649,7 +6649,8 @@ syntime_report() } /* sort on total time */ - qsort(ga.ga_data, (size_t)ga.ga_len, sizeof(time_entry_T), syn_compare_syntime); + qsort(ga.ga_data, (size_t)ga.ga_len, sizeof(time_entry_T), + syn_compare_syntime); MSG_PUTS_TITLE(_(" TOTAL COUNT MATCH SLOWEST AVERAGE NAME PATTERN")); MSG_PUTS("\n"); diff --git a/src/version.c b/src/version.c index 879b6cc68..dd532e5dc 100644 --- a/src/version.c +++ b/src/version.c @@ -728,6 +728,8 @@ static char *(features[]) = static int included_patches[] = { /* Add new patch number below this line */ +/**/ + 1135, /**/ 1134, /**/