summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorknu <knu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2009-03-23 12:15:04 +0000
committerknu <knu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2009-03-23 12:15:04 +0000
commit3a1de82579cd67a14d69b4d382aff46784ec7ce4 (patch)
tree0bae180cacef14899d54157986c3eeb12fbb8694
parent2fddf6eceb0f820b4c5602c480ac20caddc5d47b (diff)
Mention IO#ungetbyte(), which I have accidentally committed together
with other changes. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/branches/ruby_1_8@23054 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
-rw-r--r--ChangeLog2
-rw-r--r--NEWS4
2 files changed, 6 insertions, 0 deletions
diff --git a/ChangeLog b/ChangeLog
index ddb1bbdb56..458770467f 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,5 +1,7 @@
Mon Mar 23 21:07:09 2009 Akinori MUSHA <[email protected]>
+ * io.c (IO#ungetbyte): New method backported from 1.9.
+
* array.c (ary_resize_capa): Remove an unused function.
* array.c, bignum.c, dir.c, enumerator.c, gc.c, io.c, numeric.c,
diff --git a/NEWS b/NEWS
index bbbdd2e5ee..f5f142202b 100644
--- a/NEWS
+++ b/NEWS
@@ -64,6 +64,10 @@ with all sufficient information, see the ChangeLog file.
Renamed from ENV.index.
+ * IO#ungetbyte
+
+ Added as an alias to #ungetc.
+
* Proc#===
New method primarily for use in the case-when construct.