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

ruby-changes:42312

From: naruse <ko1@a...>
Date: Tue, 29 Mar 2016 17:04:54 +0900 (JST)
Subject: [ruby-changes:42312] naruse:r54386 (ruby_2_3): merge revision(s) 54089: [Backport #12170]

naruse	2016-03-29 17:04:49 +0900 (Tue, 29 Mar 2016)

  New Revision: 54386

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

  Log:
    merge revision(s) 54089: [Backport #12170]
    
    * vm_eval.c (rb_f_catch): [DOC] fix malformed RDoc syntax, "+...+"
      cannot enclose non-identifier characters.
      a patch by Sebastian S in [ruby-core:74278].  [Bug#12170]

  Modified directories:
    branches/ruby_2_3/
  Modified files:
    branches/ruby_2_3/ChangeLog
    branches/ruby_2_3/version.h
    branches/ruby_2_3/vm_eval.c
Index: ruby_2_3/ChangeLog
===================================================================
--- ruby_2_3/ChangeLog	(revision 54385)
+++ ruby_2_3/ChangeLog	(revision 54386)
@@ -1,3 +1,9 @@ https://github.com/ruby/ruby/blob/trunk/ruby_2_3/ChangeLog#L1
+Tue Mar 29 17:04:35 2016  Nobuyoshi Nakada  <nobu@r...>
+
+	* vm_eval.c (rb_f_catch): [DOC] fix malformed RDoc syntax, "+...+"
+	  cannot enclose non-identifier characters.
+	  a patch by Sebastian S in [ruby-core:74278].  [Bug#12170]
+
 Tue Mar 29 17:03:28 2016  Rei Odaira  <Rei.Odaira@g...>
 
 	* test/-ext-/float/test_nextafter.rb: In AIX,
Index: ruby_2_3/vm_eval.c
===================================================================
--- ruby_2_3/vm_eval.c	(revision 54385)
+++ ruby_2_3/vm_eval.c	(revision 54386)
@@ -1923,10 +1923,10 @@ catch_i(VALUE tag, VALUE data) https://github.com/ruby/ruby/blob/trunk/ruby_2_3/vm_eval.c#L1923
  *
  *     catch(1) { 123 }            # => 123
  *
- *  If +throw(tag2, val)+ is called, Ruby searches up its stack for a +catch+
- *  block whose +tag+ has the same +object_id+ as _tag2_. When found, the block
- *  stops executing and returns _val_ (or +nil+ if no second argument was given
- *  to +throw+).
+ *  If <code>throw(tag2, val)</code> is called, Ruby searches up its stack for
+ *  a +catch+ block whose +tag+ has the same +object_id+ as _tag2_. When found,
+ *  the block stops executing and returns _val_ (or +nil+ if no second argument
+ *  was given to +throw+).
  *
  *     catch(1) { throw(1, 456) }  # => 456
  *     catch(1) { throw(1) }       # => nil
Index: ruby_2_3/version.h
===================================================================
--- ruby_2_3/version.h	(revision 54385)
+++ ruby_2_3/version.h	(revision 54386)
@@ -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 42
+#define RUBY_PATCHLEVEL 43
 
 #define RUBY_RELEASE_YEAR 2016
 #define RUBY_RELEASE_MONTH 3

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


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

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