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

ruby-changes:3981

From: ko1@a...
Date: Thu, 14 Feb 2008 17:46:27 +0900 (JST)
Subject: [ruby-changes:3981] matz - Ruby:r15471 (ruby_1_8): * ext/dl/ptr.c (dlmem_each_i): typo fixed. a patch from IKOMA

matz	2008-02-14 17:46:06 +0900 (Thu, 14 Feb 2008)

  New Revision: 15471

  Modified files:
    branches/ruby_1_8/ChangeLog
    branches/ruby_1_8/ext/dl/ptr.c

  Log:
    * ext/dl/ptr.c (dlmem_each_i): typo fixed.  a patch from IKOMA
      Yoshiki <ikoma@m...> in [ruby-dev:33776].

  http://svn.ruby-lang.org/cgi-bin/viewvc.cgi/branches/ruby_1_8/ChangeLog?r1=15471&r2=15470&diff_format=u
  http://svn.ruby-lang.org/cgi-bin/viewvc.cgi/branches/ruby_1_8/ext/dl/ptr.c?r1=15471&r2=15470&diff_format=u

Index: ruby_1_8/ext/dl/ptr.c
===================================================================
--- ruby_1_8/ext/dl/ptr.c	(revision 15470)
+++ ruby_1_8/ext/dl/ptr.c	(revision 15471)
@@ -1006,7 +1006,7 @@
 dlmem_each_i(void* key, VALUE value, void* arg)
 {
   VALUE vkey = DLLONG2NUM(key);
-  rb_yield(rb_assic_new(vkey, value));
+  rb_yield(rb_assoc_new(vkey, value));
   return Qnil;
 }
 
Index: ruby_1_8/ChangeLog
===================================================================
--- ruby_1_8/ChangeLog	(revision 15470)
+++ ruby_1_8/ChangeLog	(revision 15471)
@@ -1,3 +1,8 @@
+Thu Feb 14 17:44:32 2008  Yukihiro Matsumoto  <matz@r...>
+
+	* ext/dl/ptr.c (dlmem_each_i): typo fixed.  a patch from IKOMA
+	  Yoshiki <ikoma@m...> in [ruby-dev:33776].
+
 Thu Feb 14 16:02:51 2008  Nobuyoshi Nakada  <nobu@r...>
 
 	* file.c (rb_file_s_utime): inhibits with secure level 2 or higher.

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

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