1
0
Fork 0
mirror of https://github.com/ruby/ruby.git synced 2022-11-09 12:17:21 -05:00

* ext/zlib/zlib.c (rb_gzfile_s_wrap): add rdoc. [Bug #2656]

patched by Hugh Sasse [ruby-core:27692] [ruby-core:27852]

git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@26429 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
naruse 2010-01-26 13:31:12 +00:00
parent 05d80e2fc6
commit bddadeeae4
2 changed files with 7 additions and 5 deletions

View file

@ -27,13 +27,13 @@ Tue Jan 26 20:23:22 2010 Yusuke Endoh <mame@tsg.ne.jp>
Tue Jan 26 20:21:28 2010 Masatoshi SEKI <m_seki@mva.biglobe.ne.jp>
* lib/drb/eq.rb: fix circular requrie in drb.
reported by akr. see [ruby-dev:40156] [ruby-core:27661]
reported by akr. see [ruby-dev:40156] [ruby-core:27661]
Tue Jan 26 19:59:17 2010 NARUSE, Yui <naruse@ruby-lang.org>
* ext/zlib/zlib.c (rb_gzfile_s_wrap): add rdoc.
patched by Hugh Sasse [ruby-core:27692]
* ext/zlib/zlib.c (rb_gzfile_s_wrap): add rdoc. [Bug #2656]
patched by Hugh Sasse [ruby-core:27692] [ruby-core:27852]
* ext/zlib/doc/zlib.rd: removed.

View file

@ -2420,12 +2420,14 @@ gzfile_ensure_close(VALUE obj)
}
/*
* Creates a GzipFile object associated with ((|io|)), and
* call-seq: Zlib::GzipFile.wrap(io) { |gz| ... }
*
* Creates a GzipFile object associated with +io+, and
* executes the block with the newly created GzipFile object,
* just like File.open. The GzipFile object will be closed
* automatically after executing the block. If you want to keep
* the associated IO object opening, you may call
* ((<Zlib::GzipFile#finish>)) method in the block.
* +Zlib::GzipFile#finish+ method in the block.
*/
static VALUE
rb_gzfile_s_wrap(int argc, VALUE *argv, VALUE klass)