summaryrefslogtreecommitdiffstats
path: root/ChangeLog
diff options
context:
space:
mode:
authormatz <matz@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2006-10-18 04:30:40 +0000
committermatz <matz@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2006-10-18 04:30:40 +0000
commit6550126fabd3ee9a7d9983bf1e03fad4614ccbe0 (patch)
tree6136f8b6851b416d37fb6b44c36d43b8267309dc /ChangeLog
parenta6b64c3c2d4b5d0210e7288106a60896767e2a8a (diff)
downloadruby-6550126fabd3ee9a7d9983bf1e03fad4614ccbe0.tar.gz
ruby-6550126fabd3ee9a7d9983bf1e03fad4614ccbe0.tar.xz
ruby-6550126fabd3ee9a7d9983bf1e03fad4614ccbe0.zip
* string.c (rb_str_each_line): String#lines now works when a block
is given. in other words, lines become an alias to each_line. [ruby-core:09218] * string.c (rb_str_each_byte): ditto for bytes in place of lines. git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@11186 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'ChangeLog')
-rw-r--r--ChangeLog8
1 files changed, 8 insertions, 0 deletions
diff --git a/ChangeLog b/ChangeLog
index 693f64bab..93e87fd2f 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,11 @@
+Wed Oct 18 13:25:50 2006 Yukihiro Matsumoto <matz@ruby-lang.org>
+
+ * string.c (rb_str_each_line): String#lines now works when a block
+ is given. in other words, lines become an alias to each_line.
+ [ruby-core:09218]
+
+ * string.c (rb_str_each_byte): ditto for bytes in place of lines.
+
Wed Oct 18 00:55:33 2006 Nobuyoshi Nakada <nobu@ruby-lang.org>
* parse.y (parser_yylex): use particular enums. [ruby-core:09221]