1
0
Fork 0
mirror of https://github.com/ruby/ruby.git synced 2022-11-09 12:17:21 -05:00

merge revision(s) 49491: [Backport #10823]

* ext/bigdecimal/bigdecimal.c (VpSetPTR): fix a typo, 'expoennt'
	  to 'exponent'.  [ruby-core:67980] [Bug #10823] [Fix GH-825]


git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/branches/ruby_2_1@50670 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
usa 2015-05-29 05:03:43 +00:00
parent 6f97605fe3
commit 0d1f4fb57d
3 changed files with 7 additions and 2 deletions

View file

@ -1,3 +1,8 @@
Fri May 29 14:03:33 2015 Matt Hoyle <matt@deployable.co>
* ext/bigdecimal/bigdecimal.c (VpSetPTR): fix a typo, 'expoennt'
to 'exponent'. [ruby-core:67980] [Bug #10823] [Fix GH-825]
Fri May 29 14:00:16 2015 Nobuyoshi Nakada <nobu@ruby-lang.org>
* win32/file.c (rb_file_expand_path_internal): neither the drive

View file

@ -4386,7 +4386,7 @@ VpSetPTR(Real *a, Real *b, Real *c, size_t *a_pos, size_t *b_pos, size_t *c_pos,
size_t const round_limit = (VpGetPrecLimit() + BASE_FIG - 1) / BASE_FIG;
assert(a->exponent >= b->expoennt);
assert(a->exponent >= b->exponent);
c->frac[0] = 0;
*av = *bv = 0;

View file

@ -1,6 +1,6 @@
#define RUBY_VERSION "2.1.7"
#define RUBY_RELEASE_DATE "2015-05-29"
#define RUBY_PATCHLEVEL 361
#define RUBY_PATCHLEVEL 362
#define RUBY_RELEASE_YEAR 2015
#define RUBY_RELEASE_MONTH 5