From: Bram Moolenaar Date: Fri, 20 Apr 2012 16:05:47 +0000 (+0200) Subject: updated for version 7.3.501 X-Git-Tag: v7.3.501 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=35df7d2d99823124e0001e023ff1e2764cfb5937;p=thirdparty%2Fvim.git updated for version 7.3.501 Problem: Error for "flush" not being defined when using Ruby command. Solution: Defined "flush" as a no-op method. (Kent Sibilev) --- diff --git a/src/if_ruby.c b/src/if_ruby.c index 5dc32858be..3b5b93b056 100644 --- a/src/if_ruby.c +++ b/src/if_ruby.c @@ -1238,6 +1238,11 @@ static VALUE window_set_cursor(VALUE self, VALUE pos) return Qnil; } +static VALUE f_nop(VALUE self) +{ + return Qnil; +} + static VALUE f_p(int argc, VALUE *argv, VALUE self UNUSED) { int i; @@ -1259,6 +1264,7 @@ static void ruby_io_init(void) rb_stdout = rb_obj_alloc(rb_cObject); rb_define_singleton_method(rb_stdout, "write", vim_message, 1); + rb_define_singleton_method(rb_stdout, "flush", f_nop, 0); rb_define_global_function("p", f_p, -1); } diff --git a/src/version.c b/src/version.c index 720e45a1af..94d429e4ca 100644 --- a/src/version.c +++ b/src/version.c @@ -714,6 +714,8 @@ static char *(features[]) = static int included_patches[] = { /* Add new patch number below this line */ +/**/ + 501, /**/ 500, /**/