diff options
author | matz <matz@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2002-12-10 06:23:44 +0000 |
---|---|---|
committer | matz <matz@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2002-12-10 06:23:44 +0000 |
commit | 60b2446bea0297c47f56deb308c29a5c1af64cc9 (patch) | |
tree | 2bcb6184518b5e93ec49a03b275258a817511abd /re.c | |
parent | 4dcd8a95c7acf13a87283c11f72f7a8a7ad15019 (diff) | |
download | ruby-60b2446bea0297c47f56deb308c29a5c1af64cc9.tar.gz |
* sprintf.c (rb_f_sprintf): preceding ".." for negative numbers
still left; removed.
* sprintf.c (rb_f_sprintf): should not prepend '0' if width > prec
for example "%5.3d".
* process.c (Init_process): add Process.exit and Process.abort
* pack.c (utf8_to_uv): raise ArgumentError for malformed/redundant
UTF-8 sequences.
* process.c (last_status_set): add pid attribute to Process::Status.
* pack.c (uv_to_utf8): limit maximum length of the encoded string
to 6 bytes, even when the platform supports 8 bytes long integers.
* pack.c (utf8_to_uv): do not decode sequences longer than 6 bytes.
* object.c (copy_object): use "copy_object" method, not "become".
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@3123 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 're.c')
-rw-r--r-- | re.c | 8 |
1 files changed, 4 insertions, 4 deletions
@@ -527,7 +527,7 @@ match_alloc(klass) } static VALUE -match_become(obj, orig) +match_copy_object(obj, orig) VALUE obj, orig; { if (obj == orig) return obj; @@ -1309,7 +1309,7 @@ rb_reg_options(re) } static VALUE -rb_reg_become(copy, re) +rb_reg_copy_object(copy, re) VALUE copy, re; { if (copy == re) return copy; @@ -1562,7 +1562,7 @@ Init_Regexp() rb_define_singleton_method(rb_cRegexp, "last_match", rb_reg_s_last_match, -1); rb_define_method(rb_cRegexp, "initialize", rb_reg_initialize_m, -1); - rb_define_method(rb_cRegexp, "become", rb_reg_become, 1); + rb_define_method(rb_cRegexp, "copy_object", rb_reg_copy_object, 1); rb_define_method(rb_cRegexp, "==", rb_reg_equal, 1); rb_define_method(rb_cRegexp, "=~", rb_reg_match, 1); rb_define_method(rb_cRegexp, "===", rb_reg_match, 1); @@ -1586,7 +1586,7 @@ Init_Regexp() rb_define_singleton_method(rb_cMatch, "allocate", match_alloc, 0); rb_undef_method(CLASS_OF(rb_cMatch), "new"); - rb_define_method(rb_cMatch, "become", match_become, 1); + rb_define_method(rb_cMatch, "copy_object", match_copy_object, 1); rb_define_method(rb_cMatch, "size", match_size, 0); rb_define_method(rb_cMatch, "length", match_size, 0); rb_define_method(rb_cMatch, "offset", match_offset, 1); |