aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorkou <kou@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2012-06-22 09:52:32 +0000
committerkou <kou@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2012-06-22 09:52:32 +0000
commit7b036a8ea78e713adbd29778612693d405b91813 (patch)
tree69b2bb2ba59c42b5b7cab67ef5dfba2a5b6b5a9f
parentc4bc9b575898ba352d0fea8289ebcaf8921dacd1 (diff)
downloadruby-7b036a8ea78e713adbd29778612693d405b91813.tar.gz
* README.EXT, README.EXT.ja: use "sval" for the third argument
name of Data_Wrap_Struct(). Suggested by @satoh_fumiyasu. Thanks!!! git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@36180 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
-rw-r--r--ChangeLog6
-rw-r--r--README.EXT2
-rw-r--r--README.EXT.ja2
3 files changed, 8 insertions, 2 deletions
diff --git a/ChangeLog b/ChangeLog
index c481c4ffa5..e2228ee4b7 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,9 @@
+Fri Jun 22 18:48:51 2012 Kouhei Sutou <kou@cozmixng.org>
+
+ * README.EXT, README.EXT.ja: use "sval" for the third argument
+ name of Data_Wrap_Struct().
+ Suggested by @satoh_fumiyasu. Thanks!!!
+
Fri Jun 22 18:04:26 2012 Koichi Sasada <ko1@atdot.net>
* iseq.c, vm_eval.c: set th->base_block properly.
diff --git a/README.EXT b/README.EXT
index 045c359089..d81debcba9 100644
--- a/README.EXT
+++ b/README.EXT
@@ -562,7 +562,7 @@ The prototypes of the getter and setter functions are as follows:
To wrap and objectify a C pointer as a Ruby object (so called
DATA), use Data_Wrap_Struct().
- Data_Wrap_Struct(klass, mark, free, ptr)
+ Data_Wrap_Struct(klass, mark, free, sval)
Data_Wrap_Struct() returns a created DATA object. The klass argument
is the class for the DATA object. The mark argument is the function
diff --git a/README.EXT.ja b/README.EXT.ja
index 9ce9c586a1..f28101d7fb 100644
--- a/README.EXT.ja
+++ b/README.EXT.ja
@@ -623,7 +623,7 @@ RubyオブジェクトにCの構造体(へのポインタ)をくるむことでR
Dataオブジェクトを生成して構造体をRubyオブジェクトにカプセル
化するためには,以下のマクロを使います.
- Data_Wrap_Struct(klass, mark, free, ptr)
+ Data_Wrap_Struct(klass, mark, free, sval)
このマクロの戻り値は生成されたDataオブジェクトです.