aboutsummaryrefslogtreecommitdiffstats
path: root/ext/io
diff options
context:
space:
mode:
authornobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2013-05-24 06:54:17 +0000
committernobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2013-05-24 06:54:17 +0000
commitdb41a18845d1578797a2b5baab6d9cbb76e29e42 (patch)
tree0f63b981eb4671872bcf881a9c5d2d6a9e4c9de7 /ext/io
parentb84f7fda07a8e7bfad80a9faae69f071b736f144 (diff)
downloadruby-db41a18845d1578797a2b5baab6d9cbb76e29e42.tar.gz
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
Diffstat (limited to 'ext/io')
-rw-r--r--ext/io/console/console.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/ext/io/console/console.c b/ext/io/console/console.c
index e1b515abdd..756daca9e2 100644
--- a/ext/io/console/console.c
+++ b/ext/io/console/console.c
@@ -803,7 +803,7 @@ InitVM_console(void)
rb_define_method(rb_cIO, "ioflush", console_ioflush, 0);
rb_define_singleton_method(rb_cIO, "console", console_dev, 0);
{
- VALUE mReadable = rb_define_module_under(rb_cIO, "readable");
+ VALUE mReadable = rb_define_module_under(rb_cIO, "generic_readable");
rb_define_method(mReadable, "getch", io_getch, -1);
}
}