From db41a18845d1578797a2b5baab6d9cbb76e29e42 Mon Sep 17 00:00:00 2001 From: nobu Date: Fri, 24 May 2013 06:54:17 +0000 Subject: rename generic io modules * ext/io/console/console.c, ext/stringio/stringio.c: rename internally used modules as generic_readable and generic_writable. [Fix GH-315] git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@40910 b2dd03c8-39d4-4d8f-98ff-823fe69b080e --- ext/stringio/stringio.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'ext/stringio') diff --git a/ext/stringio/stringio.c b/ext/stringio/stringio.c index 97a79839a5..bdc46af21d 100644 --- a/ext/stringio/stringio.c +++ b/ext/stringio/stringio.c @@ -1536,7 +1536,7 @@ Init_stringio() rb_define_method(StringIO, "set_encoding", strio_set_encoding, -1); { - VALUE mReadable = rb_define_module_under(rb_cIO, "readable"); + VALUE mReadable = rb_define_module_under(rb_cIO, "generic_readable"); rb_define_method(mReadable, "readchar", strio_readchar, 0); rb_define_method(mReadable, "readbyte", strio_readbyte, 0); rb_define_method(mReadable, "readline", strio_readline, -1); @@ -1546,7 +1546,7 @@ Init_stringio() rb_include_module(StringIO, mReadable); } { - VALUE mWritable = rb_define_module_under(rb_cIO, "writable"); + VALUE mWritable = rb_define_module_under(rb_cIO, "generic_writable"); rb_define_method(mWritable, "<<", strio_addstr, 1); rb_define_method(mWritable, "print", strio_print, -1); rb_define_method(mWritable, "printf", strio_printf, -1); -- cgit v1.2.3