ruby-changes:17174
From: nobu <ko1@a...>
Date: Fri, 3 Sep 2010 12:45:09 +0900 (JST)
Subject: [ruby-changes:17174] Ruby:r29173 (ruby_1_8): * intern.h (rb_usascii_str_new): macros for forward compatibility.
nobu 2010-09-03 12:41:09 +0900 (Fri, 03 Sep 2010) New Revision: 29173 http://svn.ruby-lang.org/cgi-bin/viewvc.cgi?view=rev&revision=29173 Log: * intern.h (rb_usascii_str_new): macros for forward compatibility. Modified files: branches/ruby_1_8/ChangeLog branches/ruby_1_8/intern.h Index: ruby_1_8/intern.h =================================================================== --- ruby_1_8/intern.h (revision 29172) +++ ruby_1_8/intern.h (revision 29173) @@ -450,6 +450,9 @@ VALUE rb_str_buf_append _((VALUE, VALUE)); VALUE rb_str_buf_cat _((VALUE, const char*, long)); VALUE rb_str_buf_cat2 _((VALUE, const char*)); +#define rb_usascii_str_new rb_str_new +#define rb_usascii_str_new_cstr rb_str_new_cstr +#define rb_usascii_str_new2 rb_str_new2 VALUE rb_obj_as_string _((VALUE)); VALUE rb_check_string_type _((VALUE)); VALUE rb_str_dup _((VALUE)); Index: ruby_1_8/ChangeLog =================================================================== --- ruby_1_8/ChangeLog (revision 29172) +++ ruby_1_8/ChangeLog (revision 29173) @@ -1,3 +1,7 @@ +Fri Sep 3 12:40:54 2010 Nobuyoshi Nakada <nobu@r...> + + * intern.h (rb_usascii_str_new): macros for forward compatibility. + Tue Aug 31 17:32:34 2010 Hidetoshi NAGAI <nagai@a...> * ext/tk/stubs.c: fix [Bug #3771] "VC++ can't make ext/tk with enabling -- ML: ruby-changes@q... Info: http://www.atdot.net/~ko1/quickml/