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

ruby-changes:4744

From: ko1@a...
Date: Wed, 30 Apr 2008 16:13:16 +0900 (JST)
Subject: [ruby-changes:4744] mame - Ruby:r16238 (trunk): * eval_intern.h: speficy the values of the enumeration constants

mame	2008-04-30 16:12:37 +0900 (Wed, 30 Apr 2008)

  New Revision: 16238

  Modified files:
    trunk/ChangeLog
    trunk/eval_intern.h

  Log:
    * eval_intern.h: speficy the values of the enumeration constants
      explicitly.  [ruby-dev:34489]


  http://svn.ruby-lang.org/cgi-bin/viewvc.cgi/trunk/ChangeLog?r1=16238&r2=16237&diff_format=u
  http://svn.ruby-lang.org/cgi-bin/viewvc.cgi/trunk/eval_intern.h?r1=16238&r2=16237&diff_format=u

Index: eval_intern.h
===================================================================
--- eval_intern.h	(revision 16237)
+++ eval_intern.h	(revision 16238)
@@ -194,8 +194,8 @@
 
 enum {
     RAISED_EXCEPTION = 1,
-    RAISED_STACKOVERFLOW,
-    RAISED_NOMEMORY,
+    RAISED_STACKOVERFLOW = 2,
+    RAISED_NOMEMORY = 4,
 };
 int rb_thread_set_raised(rb_thread_t *th);
 int rb_thread_reset_raised(rb_thread_t *th);
Index: ChangeLog
===================================================================
--- ChangeLog	(revision 16237)
+++ ChangeLog	(revision 16238)
@@ -1,3 +1,8 @@
+Wed Apr 30 16:10:18 2008  Yusuke Endoh  <mame@t...>
+
+	* eval_intern.h: speficy the values of the enumeration constants
+	  explicitly.  [ruby-dev:34489]
+
 Wed Apr 30 12:32:39 2008  Tanaka Akira  <akr@f...>
 
 	* process.c (check_exec_redirect_fd): prohibit duplex IO.

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

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