summaryrefslogtreecommitdiffstats
path: root/io.c
diff options
context:
space:
mode:
authordave <dave@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2004-01-26 13:54:41 +0000
committerdave <dave@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2004-01-26 13:54:41 +0000
commita564acba71f594fee18294492f4401cd84d01ed1 (patch)
treef153c00bc00366b6d2462df95fed19dc58a61cbf /io.c
parentf5d3990dbcd846a834e07011facc19298e4c746e (diff)
downloadruby-a564acba71f594fee18294492f4401cd84d01ed1.tar.gz
ruby-a564acba71f594fee18294492f4401cd84d01ed1.tar.xz
ruby-a564acba71f594fee18294492f4401cd84d01ed1.zip
Remove references to defout
git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@5558 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'io.c')
-rw-r--r--io.c12
1 files changed, 6 insertions, 6 deletions
diff --git a/io.c b/io.c
index f0a405c4f..aeba25ad4 100644
--- a/io.c
+++ b/io.c
@@ -3268,7 +3268,7 @@ rb_io_printf(argc, argv, out)
* Equivalent to:
* io.write(sprintf(string, obj, ...)
* or
- * $defout.write(sprintf(string, obj, ...)
+ * $stdout.write(sprintf(string, obj, ...)
*/
static VALUE
@@ -3351,7 +3351,7 @@ rb_io_print(argc, argv, out)
* call-seq:
* print(obj, ...) => nil
*
- * Prints each object in turn to <code>$defout</code>. If the output
+ * Prints each object in turn to <code>$stdout</code>. If the output
* field separator (<code>$,</code>) is not +nil+, its
* contents will appear between each field. If the output record
* separator (<code>$\</code>) is not +nil+, it will be
@@ -3411,7 +3411,7 @@ rb_io_putc(io, ch)
*
* Equivalent to:
*
- * $defout.putc(int)
+ * $stdout.putc(int)
*/
static VALUE
@@ -3500,7 +3500,7 @@ rb_io_puts(argc, argv, out)
*
* Equivalent to
*
- * $defout.puts(obj, ...)
+ * $stdout.puts(obj, ...)
*/
static VALUE
@@ -3639,7 +3639,7 @@ defout_setter(val, id, variable)
VALUE *variable;
{
stdout_setter(val, id, variable);
- rb_warn("$defout is obslete; use $stdout instead");
+ rb_warn("$defout is obsolete; use $stdout instead");
}
static void
@@ -3649,7 +3649,7 @@ deferr_setter(val, id, variable)
VALUE *variable;
{
stdout_setter(val, id, variable);
- rb_warn("$deferr is obslete; use $stderr instead");
+ rb_warn("$deferr is obsolete; use $stderr instead");
}
static VALUE