changeset 3478:65d036fd449e v7.3.503

updated for version 7.3.503 Problem: Warning for unused argument. Solution: Add UNUSED.
author Bram Moolenaar <bram@vim.org>
date Wed, 25 Apr 2012 12:28:09 +0200
parents 04c692d60494
children 840378901d17
files src/if_ruby.c src/version.c
diffstat 2 files changed, 3 insertions(+), 1 deletions(-) [+]
line wrap: on
line diff
--- a/src/if_ruby.c
+++ b/src/if_ruby.c
@@ -1238,7 +1238,7 @@ static VALUE window_set_cursor(VALUE sel
     return Qnil;
 }
 
-static VALUE f_nop(VALUE self)
+static VALUE f_nop(VALUE self UNUSED)
 {
     return Qnil;
 }
--- 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 */
 /**/
+    503,
+/**/
     502,
 /**/
     501,