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

ruby-changes:23828

From: tadf <ko1@a...>
Date: Sun, 3 Jun 2012 14:16:04 +0900 (JST)
Subject: [ruby-changes:23828] tadf:r35879 (trunk): now marshal_{load|dump} are external.

tadf	2012-06-03 14:15:56 +0900 (Sun, 03 Jun 2012)

  New Revision: 35879

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

  Log:
    now marshal_{load|dump} are external.

  Modified files:
    trunk/marshal.c

Index: marshal.c
===================================================================
--- marshal.c	(revision 35878)
+++ marshal.c	(revision 35879)
@@ -899,7 +899,7 @@
  *   ThreadGroup, Continuation
  * * objects which defines singleton methods
  */
-static VALUE
+VALUE
 marshal_dump(int argc, VALUE *argv)
 {
     VALUE obj, port, a1, a2;
@@ -1752,7 +1752,7 @@
  * to_str. If proc is specified, it will be passed each object as it
  * is deserialized.
  */
-static VALUE
+VALUE
 marshal_load(int argc, VALUE *argv)
 {
     VALUE port, proc;

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

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