diff options
author | shyouhei <shyouhei@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2007-09-22 21:07:36 +0000 |
---|---|---|
committer | shyouhei <shyouhei@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2007-09-22 21:07:36 +0000 |
commit | 13d5a288271077f74547b803443d821b2cfa0bfb (patch) | |
tree | 8fa5da2a53ef6574f6401a00f9b9ae1d33afd5a5 | |
parent | 756354d4a5fd8ca84f5d6100a53da57cb3448a43 (diff) |
* ext/stringio/stringio.c (strio_init): separate from strio_initialize
to share with strio_reopen properly. [ruby-Bugs-13919]
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/branches/ruby_1_8_6@13487 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
-rw-r--r-- | ChangeLog | 5 | ||||
-rw-r--r-- | ext/stringio/stringio.c | 20 | ||||
-rw-r--r-- | version.h | 2 |
3 files changed, 22 insertions, 5 deletions
@@ -1,3 +1,8 @@ +Sun Sep 23 06:05:35 2007 Nobuyoshi Nakada <[email protected]> + + * ext/stringio/stringio.c (strio_init): separate from strio_initialize + to share with strio_reopen properly. [ruby-Bugs-13919] + Sun Sep 23 05:42:35 2007 URABE Shyouhei <[email protected]> * lib/rdoc/options.rb (Options::check_diagram): dot -V output diff --git a/ext/stringio/stringio.c b/ext/stringio/stringio.c index a64aaf837c..7355afd770 100644 --- a/ext/stringio/stringio.c +++ b/ext/stringio/stringio.c @@ -136,6 +136,7 @@ check_modifiable(ptr) static VALUE strio_s_allocate _((VALUE)); static VALUE strio_s_open _((int, VALUE *, VALUE)); +static void strio_init _((int, VALUE *, struct StringIO *)); static VALUE strio_initialize _((int, VALUE *, VALUE)); static VALUE strio_finalize _((VALUE)); static VALUE strio_self _((VALUE)); @@ -217,13 +218,24 @@ strio_initialize(argc, argv, self) VALUE self; { struct StringIO *ptr = check_strio(self); - VALUE string, mode; - int trunc = Qfalse; if (!ptr) { DATA_PTR(self) = ptr = strio_alloc(); } rb_call_super(0, 0); + strio_init(argc, argv, ptr); + return self; +} + +static void +strio_init(argc, argv, ptr) + int argc; + VALUE *argv; + struct StringIO *ptr; +{ + VALUE string, mode; + int trunc = Qfalse; + switch (rb_scan_args(argc, argv, "02", &string, &mode)) { case 2: if (FIXNUM_P(mode)) { @@ -255,7 +267,6 @@ strio_initialize(argc, argv, self) break; } ptr->string = string; - return self; } static VALUE @@ -570,7 +581,8 @@ strio_reopen(argc, argv, self) if (argc == 1 && TYPE(*argv) != T_STRING) { return strio_copy(self, *argv); } - return strio_initialize(argc, argv, self); + strio_init(argc, argv, StringIO(self)); + return self; } /* @@ -2,7 +2,7 @@ #define RUBY_RELEASE_DATE "2007-09-23" #define RUBY_VERSION_CODE 186 #define RUBY_RELEASE_CODE 20070923 -#define RUBY_PATCHLEVEL 108 +#define RUBY_PATCHLEVEL 109 #define RUBY_VERSION_MAJOR 1 #define RUBY_VERSION_MINOR 8 |