ruby-changes:28790
From: zzak <ko1@a...>
Date: Mon, 20 May 2013 07:49:40 +0900 (JST)
Subject: [ruby-changes:28790] zzak:r40842 (trunk): * ext/stringio/stringio.c: Correct position of method rdoc
zzak 2013-05-20 07:49:29 +0900 (Mon, 20 May 2013) New Revision: 40842 http://svn.ruby-lang.org/cgi-bin/viewvc.cgi?view=rev&revision=40842 Log: * ext/stringio/stringio.c: Correct position of method rdoc Modified files: trunk/ChangeLog trunk/ext/stringio/stringio.c Index: ChangeLog =================================================================== --- ChangeLog (revision 40841) +++ ChangeLog (revision 40842) @@ -1,3 +1,7 @@ https://github.com/ruby/ruby/blob/trunk/ChangeLog#L1 +Mon May 20 07:48:24 2013 Zachary Scott <zachary@z...> + + * ext/stringio/stringio.c: Correct position of method rdoc + Mon May 20 07:27:41 2013 Zachary Scott <zachary@z...> * math.c: RDoc formatting of Math core docs with domains and codomains Index: ext/stringio/stringio.c =================================================================== --- ext/stringio/stringio.c (revision 40841) +++ ext/stringio/stringio.c (revision 40842) @@ -494,16 +494,12 @@ strio_set_lineno(VALUE self, VALUE linen https://github.com/ruby/ruby/blob/trunk/ext/stringio/stringio.c#L494 return lineno; } -/* call-seq: strio.binmode -> true */ #define strio_binmode strio_self -/* call-seq: strio.fcntl */ #define strio_fcntl strio_unimpl -/* call-seq: strio.flush -> strio */ #define strio_flush strio_self -/* call-seq: strio.fsync -> 0 */ #define strio_fsync strio_0 /* @@ -623,7 +619,6 @@ strio_get_sync(VALUE self) https://github.com/ruby/ruby/blob/trunk/ext/stringio/stringio.c#L619 return Qtrue; } -/* call-seq: strio.sync = boolean -> boolean */ #define strio_set_sync strio_first #define strio_tell strio_get_pos @@ -650,7 +645,7 @@ strio_each_byte(VALUE self) https://github.com/ruby/ruby/blob/trunk/ext/stringio/stringio.c#L645 } /* - * This is a deprecated alias for <code>each_byte</code>. + * This is a deprecated alias for #each_byte. */ static VALUE strio_bytes(VALUE self) @@ -1349,18 +1344,10 @@ strio_sysread(int argc, VALUE *argv, VAL https://github.com/ruby/ruby/blob/trunk/ext/stringio/stringio.c#L1344 #define strio_syswrite rb_io_write -/* - * call-seq: - * strio.isatty -> nil - * strio.tty? -> nil - * - */ #define strio_isatty strio_false -/* call-seq: strio.pid -> nil */ #define strio_pid strio_nil -/* call-seq: strio.fileno -> nil */ #define strio_fileno strio_nil /* @@ -1480,6 +1467,8 @@ Init_stringio() https://github.com/ruby/ruby/blob/trunk/ext/stringio/stringio.c#L1467 rb_define_method(StringIO, "lineno", strio_get_lineno, 0); rb_define_method(StringIO, "lineno=", strio_set_lineno, 1); + + /* call-seq: strio.binmode -> true */ rb_define_method(StringIO, "binmode", strio_binmode, 0); rb_define_method(StringIO, "close", strio_close, 0); rb_define_method(StringIO, "close_read", strio_close_read, 0); @@ -1489,14 +1478,18 @@ Init_stringio() https://github.com/ruby/ruby/blob/trunk/ext/stringio/stringio.c#L1478 rb_define_method(StringIO, "closed_write?", strio_closed_write, 0); rb_define_method(StringIO, "eof", strio_eof, 0); rb_define_method(StringIO, "eof?", strio_eof, 0); + /* call-seq: strio.fcntl */ rb_define_method(StringIO, "fcntl", strio_fcntl, -1); + /* call-seq: strio.flush -> strio */ rb_define_method(StringIO, "flush", strio_flush, 0); + /* call-seq: strio.fsync -> 0 */ rb_define_method(StringIO, "fsync", strio_fsync, 0); rb_define_method(StringIO, "pos", strio_get_pos, 0); rb_define_method(StringIO, "pos=", strio_set_pos, 1); rb_define_method(StringIO, "rewind", strio_rewind, 0); rb_define_method(StringIO, "seek", strio_seek, -1); rb_define_method(StringIO, "sync", strio_get_sync, 0); + /* call-seq: strio.sync = boolean -> boolean */ rb_define_method(StringIO, "sync=", strio_set_sync, 1); rb_define_method(StringIO, "tell", strio_tell, 0); @@ -1520,9 +1513,19 @@ Init_stringio() https://github.com/ruby/ruby/blob/trunk/ext/stringio/stringio.c#L1513 rb_define_method(StringIO, "write", strio_write, 1); rb_define_method(StringIO, "putc", strio_putc, 1); + /* + * call-seq: + * strio.isatty -> nil + * strio.tty? -> nil + * + */ rb_define_method(StringIO, "isatty", strio_isatty, 0); rb_define_method(StringIO, "tty?", strio_isatty, 0); + + /* call-seq: strio.pid -> nil */ rb_define_method(StringIO, "pid", strio_pid, 0); + + /* call-seq: strio.fileno -> nil */ rb_define_method(StringIO, "fileno", strio_fileno, 0); rb_define_method(StringIO, "size", strio_size, 0); rb_define_method(StringIO, "length", strio_size, 0); -- ML: ruby-changes@q... Info: http://www.atdot.net/~ko1/quickml/