Skip to content

Commit e745d75

Browse files
committed
patch 8.0.1137: cannot build with Ruby
Problem: Cannot build with Ruby. Solution: Fix misplaced brace.
1 parent 0263146 commit e745d75

File tree

2 files changed

+3
-1
lines changed

2 files changed

+3
-1
lines changed

src/if_ruby.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1470,7 +1470,7 @@ static VALUE window_set_height(VALUE self, VALUE height)
14701470

14711471
static VALUE window_width(VALUE self UNUSED)
14721472
{
1473-
return INT2NUM(get_win(self->w_width));
1473+
return INT2NUM(get_win(self)->w_width);
14741474
}
14751475

14761476
static VALUE window_set_width(VALUE self UNUSED, VALUE width)

src/version.c

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -761,6 +761,8 @@ static char *(features[]) =
761761

762762
static int included_patches[] =
763763
{ /* Add new patch number below this line */
764+
/**/
765+
1137,
764766
/**/
765767
1136,
766768
/**/

0 commit comments

Comments
 (0)