Remove references to defout
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@5558 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
parent
d7bbf4fdd2
commit
9b077b3490
@ -1,3 +1,7 @@
|
|||||||
|
Mon Jan 26 22:53:04 2004 Dave Thomas <dave@pragprog.com>
|
||||||
|
|
||||||
|
* io.c: Remove documentation references to $defout.
|
||||||
|
|
||||||
Mon Jan 26 12:45:23 2004 Hidetoshi NAGAI <nagai@ai.kyutech.ac.jp>
|
Mon Jan 26 12:45:23 2004 Hidetoshi NAGAI <nagai@ai.kyutech.ac.jp>
|
||||||
|
|
||||||
* ext/tcltklib/tcltklib.c: define CONST84 when TCL_MAJOR_VERSION == 7
|
* ext/tcltklib/tcltklib.c: define CONST84 when TCL_MAJOR_VERSION == 7
|
||||||
|
12
io.c
12
io.c
@ -3268,7 +3268,7 @@ rb_io_printf(argc, argv, out)
|
|||||||
* Equivalent to:
|
* Equivalent to:
|
||||||
* io.write(sprintf(string, obj, ...)
|
* io.write(sprintf(string, obj, ...)
|
||||||
* or
|
* or
|
||||||
* $defout.write(sprintf(string, obj, ...)
|
* $stdout.write(sprintf(string, obj, ...)
|
||||||
*/
|
*/
|
||||||
|
|
||||||
static VALUE
|
static VALUE
|
||||||
@ -3351,7 +3351,7 @@ rb_io_print(argc, argv, out)
|
|||||||
* call-seq:
|
* call-seq:
|
||||||
* print(obj, ...) => nil
|
* 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
|
* field separator (<code>$,</code>) is not +nil+, its
|
||||||
* contents will appear between each field. If the output record
|
* contents will appear between each field. If the output record
|
||||||
* separator (<code>$\</code>) is not +nil+, it will be
|
* separator (<code>$\</code>) is not +nil+, it will be
|
||||||
@ -3411,7 +3411,7 @@ rb_io_putc(io, ch)
|
|||||||
*
|
*
|
||||||
* Equivalent to:
|
* Equivalent to:
|
||||||
*
|
*
|
||||||
* $defout.putc(int)
|
* $stdout.putc(int)
|
||||||
*/
|
*/
|
||||||
|
|
||||||
static VALUE
|
static VALUE
|
||||||
@ -3500,7 +3500,7 @@ rb_io_puts(argc, argv, out)
|
|||||||
*
|
*
|
||||||
* Equivalent to
|
* Equivalent to
|
||||||
*
|
*
|
||||||
* $defout.puts(obj, ...)
|
* $stdout.puts(obj, ...)
|
||||||
*/
|
*/
|
||||||
|
|
||||||
static VALUE
|
static VALUE
|
||||||
@ -3639,7 +3639,7 @@ defout_setter(val, id, variable)
|
|||||||
VALUE *variable;
|
VALUE *variable;
|
||||||
{
|
{
|
||||||
stdout_setter(val, id, variable);
|
stdout_setter(val, id, variable);
|
||||||
rb_warn("$defout is obslete; use $stdout instead");
|
rb_warn("$defout is obsolete; use $stdout instead");
|
||||||
}
|
}
|
||||||
|
|
||||||
static void
|
static void
|
||||||
@ -3649,7 +3649,7 @@ deferr_setter(val, id, variable)
|
|||||||
VALUE *variable;
|
VALUE *variable;
|
||||||
{
|
{
|
||||||
stdout_setter(val, id, variable);
|
stdout_setter(val, id, variable);
|
||||||
rb_warn("$deferr is obslete; use $stderr instead");
|
rb_warn("$deferr is obsolete; use $stderr instead");
|
||||||
}
|
}
|
||||||
|
|
||||||
static VALUE
|
static VALUE
|
||||||
|
Loading…
x
Reference in New Issue
Block a user