From e745d75c3e0d976e73bd17c395e9cce98f671692 Mon Sep 17 00:00:00 2001 From: Bram Moolenaar Date: Fri, 22 Sep 2017 16:56:22 +0200 Subject: patch 8.0.1137: cannot build with Ruby Problem: Cannot build with Ruby. Solution: Fix misplaced brace. --- src/if_ruby.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/if_ruby.c') diff --git a/src/if_ruby.c b/src/if_ruby.c index 9474e7c8a..c1b42e675 100644 --- a/src/if_ruby.c +++ b/src/if_ruby.c @@ -1470,7 +1470,7 @@ static VALUE window_set_height(VALUE self, VALUE height) static VALUE window_width(VALUE self UNUSED) { - return INT2NUM(get_win(self->w_width)); + return INT2NUM(get_win(self)->w_width); } static VALUE window_set_width(VALUE self UNUSED, VALUE width) -- cgit v1.2.1