summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorhsbt <hsbt@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2015-04-12 05:19:22 +0000
committerhsbt <hsbt@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2015-04-12 05:19:22 +0000
commit1ed7fdf1fa97a167768534dddb5a393274937cca (patch)
treea1bf94d6102cb734944cbff15f58312d3a3a3854
parent2eb3c2c52850690a3fd2bc2267f8eafdab62c950 (diff)
* gc.c: Document require name for ObjectSpace methods.
[ci skip][fix GH-860] Patch by @schneems git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@50258 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
-rw-r--r--ChangeLog5
-rw-r--r--gc.c2
2 files changed, 7 insertions, 0 deletions
diff --git a/ChangeLog b/ChangeLog
index 1964936c2d..b4e864785f 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,8 @@
+Sun Apr 12 14:13:28 2015 SHIBATA Hiroshi <shibata.hiroshi@gmail.com>
+
+ * gc.c: Document require name for ObjectSpace methods.
+ [ci skip][fix GH-860] Patch by @schneems
+
Sun Apr 12 13:54:05 2015 Tanaka Akira <akr@fsij.org>
* test/ruby/test_io.rb: New test that open(fifo) doesn't block other
diff --git a/gc.c b/gc.c
index a516de630b..f311501646 100644
--- a/gc.c
+++ b/gc.c
@@ -8966,6 +8966,8 @@ rb_gcdebug_sentinel(VALUE obj, const char *name)
* called when a specific object is about to be destroyed by garbage
* collection.
*
+ * require 'objspace'
+ *
* a = "A"
* b = "B"
*