]> granicus.if.org Git - vim/commitdiff
updated for version 7.3.1135 v7.3.1135
authorBram Moolenaar <Bram@vim.org>
Thu, 6 Jun 2013 19:19:51 +0000 (21:19 +0200)
committerBram Moolenaar <Bram@vim.org>
Thu, 6 Jun 2013 19:19:51 +0000 (21:19 +0200)
Problem:    Compiler warning for unused argument.
Solution:   Add UNUSED.

src/syntax.c
src/version.c

index 90b54afdbcce62f17190b4ebd0da8852e49e381b..6cd583498b497596bccb24a334454a710fc9a5bb 100644 (file)
@@ -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");
index 879b6cc68ca78a6f87343c5407c54870a8f73206..dd532e5dca127b23fe32b90d919f5d68e1efccfe 100644 (file)
@@ -728,6 +728,8 @@ static char *(features[]) =
 
 static int included_patches[] =
 {   /* Add new patch number below this line */
+/**/
+    1135,
 /**/
     1134,
 /**/