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

ruby-changes:12009

From: nobu <ko1@a...>
Date: Sat, 13 Jun 2009 06:47:49 +0900 (JST)
Subject: [ruby-changes:12009] Ruby:r23673 (trunk): * vm_eval.c (rb_f_throw): fixed rdoc about execption.

nobu	2009-06-13 06:45:52 +0900 (Sat, 13 Jun 2009)

  New Revision: 23673

  http://svn.ruby-lang.org/cgi-bin/viewvc.cgi?view=rev&revision=23673

  Log:
    * vm_eval.c (rb_f_throw): fixed rdoc about execption.
      [ruby-core:23824]

  Modified files:
    trunk/ChangeLog
    trunk/version.h
    trunk/vm_eval.c

Index: ChangeLog
===================================================================
--- ChangeLog	(revision 23672)
+++ ChangeLog	(revision 23673)
@@ -1,3 +1,8 @@
+Sat Jun 13 06:45:46 2009  Nobuyoshi Nakada  <nobu@r...>
+
+	* vm_eval.c (rb_f_throw): fixed rdoc about execption.
+	  [ruby-core:23824]
+
 Fri Jun 12 14:56:50 2009  Nobuyoshi Nakada  <nobu@r...>
 
 	* file.c (file_expand_path): associate the input encoding when
Index: vm_eval.c
===================================================================
--- vm_eval.c	(revision 23672)
+++ vm_eval.c	(revision 23673)
@@ -1140,7 +1140,7 @@
  *     throw(symbol [, obj])
  *
  *  Transfers control to the end of the active +catch+ block
- *  waiting for _symbol_. Raises +NameError+ if there
+ *  waiting for _symbol_. Raises +ArgumentError+ if there
  *  is no +catch+ block for the symbol. The optional second
  *  parameter supplies a return value for the +catch+ block,
  *  which otherwise defaults to +nil+. For examples, see
Index: version.h
===================================================================
--- version.h	(revision 23672)
+++ version.h	(revision 23673)
@@ -1,5 +1,5 @@
 #define RUBY_VERSION "1.9.2"
-#define RUBY_RELEASE_DATE "2009-06-12"
+#define RUBY_RELEASE_DATE "2009-06-13"
 #define RUBY_PATCHLEVEL -1
 #define RUBY_BRANCH_NAME "trunk"
 
@@ -8,7 +8,7 @@
 #define RUBY_VERSION_TEENY 1
 #define RUBY_RELEASE_YEAR 2009
 #define RUBY_RELEASE_MONTH 6
-#define RUBY_RELEASE_DAY 12
+#define RUBY_RELEASE_DAY 13
 
 #include "ruby/version.h"
 

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

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