ruby-changes:45771
From: naruse <ko1@a...>
Date: Sat, 11 Mar 2017 22:35:59 +0900 (JST)
Subject: [ruby-changes:45771] naruse:r57844 (ruby_2_4): merge revision(s) 57246: [Backport #13091]
naruse 2017-03-11 22:35:55 +0900 (Sat, 11 Mar 2017) New Revision: 57844 https://svn.ruby-lang.org/cgi-bin/viewvc.cgi?view=revision&revision=57844 Log: merge revision(s) 57246: [Backport #13091] fix typo [Bug #13091] Modified directories: branches/ruby_2_4/ Modified files: branches/ruby_2_4/include/ruby/ruby.h branches/ruby_2_4/version.h Index: ruby_2_4/include/ruby/ruby.h =================================================================== --- ruby_2_4/include/ruby/ruby.h (revision 57843) +++ ruby_2_4/include/ruby/ruby.h (revision 57844) @@ -1633,7 +1633,7 @@ rb_alloc_tmp_buffer2(volatile VALUE *sto https://github.com/ruby/ruby/blob/trunk/ruby_2_4/include/ruby/ruby.h#L1633 #ifdef C_ALLOCA # define RB_ALLOCV(v, n) rb_alloc_tmp_buffer(&(v), (n)) # define RB_ALLOCV_N(type, v, n) \ - rb_alloc_tmp_buffer2(&(v), (n), sizeof(type)))) + rb_alloc_tmp_buffer2(&(v), (n), sizeof(type)) #else # define RUBY_ALLOCV_LIMIT 1024 # define RB_ALLOCV(v, n) ((n) < RUBY_ALLOCV_LIMIT ? \ Index: ruby_2_4/version.h =================================================================== --- ruby_2_4/version.h (revision 57843) +++ ruby_2_4/version.h (revision 57844) @@ -1,6 +1,6 @@ https://github.com/ruby/ruby/blob/trunk/ruby_2_4/version.h#L1 #define RUBY_VERSION "2.4.0" #define RUBY_RELEASE_DATE "2017-03-11" -#define RUBY_PATCHLEVEL 11 +#define RUBY_PATCHLEVEL 12 #define RUBY_RELEASE_YEAR 2017 #define RUBY_RELEASE_MONTH 3 Property changes on: ruby_2_4 ___________________________________________________________________ Modified: svn:mergeinfo Merged /trunk:r57246 -- ML: ruby-changes@q... Info: http://www.atdot.net/~ko1/quickml/