From f215c42dcb65822d6f5033fa8e406bf65d9eaa00 Mon Sep 17 00:00:00 2001 From: matz Date: Sat, 2 Sep 2006 15:05:27 +0000 Subject: * object.c (Init_Object): move symbol related code to string.c * string.c (Init_String): Symbol as subclass of String. * parse.y (rb_intern2): handle symbol as strings. * string.c (str_new): substring of symbols are mere strings, not symbols. git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@10834 b2dd03c8-39d4-4d8f-98ff-823fe69b080e --- ChangeLog | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) (limited to 'ChangeLog') diff --git a/ChangeLog b/ChangeLog index cb8b172f8..da69b4cf0 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,14 @@ +Sat Sep 2 23:53:28 2006 Yukihiro Matsumoto + + * object.c (Init_Object): move symbol related code to string.c + + * string.c (Init_String): Symbol as subclass of String. + + * parse.y (rb_intern2): handle symbol as strings. + + * string.c (str_new): substring of symbols are mere strings, not + symbols. + Sat Sep 2 23:37:29 2006 Yukihiro Matsumoto * ruby.h (struct RArray): embed small arrays. @@ -17,6 +28,13 @@ Sat Sep 2 12:06:35 2006 NAKAMURA, Hiroshi XML attribute which value is nil. value "" and nil both were dumped as 'attr="value"'. [ruby-dev:29395] +Sat Sep 2 11:47:58 2006 Yukihiro Matsumoto + + * eval.c (rb_eval): should handle when in else clause. a patch + from Eric Hodel . [ruby-core:08662] + + * parse.y (primary): wrap with NODE_CASE. [ruby-core:08663] + Sat Sep 2 12:00:32 2006 NAKAMURA, Hiroshi * lib/csv.rb (CSV::IOReader#initialize): use String#[](pos, len) -- cgit