From 561b83451b5c0bcde84d7fae9340402965f06763 Mon Sep 17 00:00:00 2001 From: yugui Date: Sat, 31 Oct 2009 13:04:18 +0000 Subject: merges r24748 from trunk into ruby_1_9_1. -- * bignum.c (rb_big_div, rb_big_idiv): fixed indent. git-svn-id: http://svn.ruby-lang.org/repos/ruby/branches/ruby_1_9_1@25587 b2dd03c8-39d4-4d8f-98ff-823fe69b080e --- bignum.c | 4 ++-- version.h | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/bignum.c b/bignum.c index 066457675..a9c751397 100644 --- a/bignum.c +++ b/bignum.c @@ -1849,13 +1849,13 @@ rb_big_divide(VALUE x, VALUE y, ID op) VALUE rb_big_div(VALUE x, VALUE y) { - return rb_big_divide(x, y, '/'); + return rb_big_divide(x, y, '/'); } VALUE rb_big_idiv(VALUE x, VALUE y) { - return rb_big_divide(x, y, rb_intern("div")); + return rb_big_divide(x, y, rb_intern("div")); } /* diff --git a/version.h b/version.h index f3cad1bee..1e8044247 100644 --- a/version.h +++ b/version.h @@ -1,5 +1,5 @@ #define RUBY_VERSION "1.9.1" -#define RUBY_PATCHLEVEL 312 +#define RUBY_PATCHLEVEL 313 #define RUBY_VERSION_MAJOR 1 #define RUBY_VERSION_MINOR 9 #define RUBY_VERSION_TEENY 1 -- cgit