[前][次][番号順一覧][スレッド一覧]

ruby-changes:42296

From: naruse <ko1@a...>
Date: Tue, 29 Mar 2016 15:18:02 +0900 (JST)
Subject: [ruby-changes:42296] naruse:r54370 (ruby_2_3): merge revision(s) 53943: [Backport #11969]

naruse	2016-03-29 15:10:16 +0900 (Tue, 29 Mar 2016)

  New Revision: 54370

  https://svn.ruby-lang.org/cgi-bin/viewvc.cgi?view=revision&revision=54370

  Log:
    merge revision(s) 53943: [Backport #11969]
    
    * lib/irb.rb: avoid to needless truncation when using back_trace_limit option.
      [fix GH-1205][ruby-core:72773][Bug #11969]

  Modified directories:
    branches/ruby_2_3/
  Modified files:
    branches/ruby_2_3/ChangeLog
    branches/ruby_2_3/lib/irb.rb
    branches/ruby_2_3/version.h
Index: ruby_2_3/lib/irb.rb
===================================================================
--- ruby_2_3/lib/irb.rb	(revision 54369)
+++ ruby_2_3/lib/irb.rb	(revision 54370)
@@ -525,7 +525,7 @@ module IRB https://github.com/ruby/ruby/blob/trunk/ruby_2_3/lib/irb.rb#L525
             print messages.join("\n"), "\n"
             unless lasts.empty?
               printf "... %d levels...\n", levels if levels > 0
-              print lasts.join("\n")
+              print lasts.join("\n"), "\n"
             end
             print "Maybe IRB bug!\n" if irb_bug
           end
Index: ruby_2_3/version.h
===================================================================
--- ruby_2_3/version.h	(revision 54369)
+++ ruby_2_3/version.h	(revision 54370)
@@ -1,6 +1,6 @@ https://github.com/ruby/ruby/blob/trunk/ruby_2_3/version.h#L1
 #define RUBY_VERSION "2.3.0"
 #define RUBY_RELEASE_DATE "2016-03-29"
-#define RUBY_PATCHLEVEL 27
+#define RUBY_PATCHLEVEL 28
 
 #define RUBY_RELEASE_YEAR 2016
 #define RUBY_RELEASE_MONTH 3
Index: ruby_2_3/ChangeLog
===================================================================
--- ruby_2_3/ChangeLog	(revision 54369)
+++ ruby_2_3/ChangeLog	(revision 54370)
@@ -1,3 +1,8 @@ https://github.com/ruby/ruby/blob/trunk/ruby_2_3/ChangeLog#L1
+Tue Mar 29 15:10:05 2016  Alex Boyd  <alex@o...>
+
+	* lib/irb.rb: avoid to needless truncation when using back_trace_limit option.
+	  [fix GH-1205][ruby-core:72773][Bug #11969]
+
 Tue Mar 29 15:05:16 2016  CHIKANAGA Tomoyuki  <nagachika@r...>
 
 	* ext/tk/lib/tkextlib/tcllib/tablelist_tile.rb: fix method name typo.

Property changes on: ruby_2_3
___________________________________________________________________
Modified: svn:mergeinfo
   Merged /trunk:r53943


--
ML: ruby-changes@q...
Info: http://www.atdot.net/~ko1/quickml/

[前][次][番号順一覧][スレッド一覧]