summaryrefslogtreecommitdiff
path: root/ChangeLog
diff options
context:
space:
mode:
authorwyhaines <wyhaines@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2010-06-22 20:10:13 +0000
committerwyhaines <wyhaines@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2010-06-22 20:10:13 +0000
commit2176130373f03ad76c814dd652044f23f9158a69 (patch)
treebc7722f9b8f380172ead89eb946ac4d406e9a7cc /ChangeLog
parent2c0b73f16a997b6b957e435d808a0b60e6afd9d3 (diff)
io.c: Backport #2267 [ruby-core:26300]; Fix problem with IO so that the file position is correct after a direct write on BSDish platforms like OS X.
test/ruby/test_io.rb: Added a test for the fix. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/branches/ruby_1_8_6@28393 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'ChangeLog')
-rw-r--r--ChangeLog7
1 files changed, 6 insertions, 1 deletions
diff --git a/ChangeLog b/ChangeLog
index fb40b909eb..e94ff3ff3d 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,6 +1,11 @@
+Wed Jun 23 04:26:00 Kirk Haines <khaines@ruby-lang.org>
+
+ * io.c: Backport #2267 [ruby-core:26300]; Fix problem with IO so that the file position is correct after a direct write on BSDish platforms like OS X.
+ * test/ruby/test_io.rb: Added a test for the fix.
+
Wed Jun 23 02:07:00 Kirk Haines <khaines@ruby-lang.org>
- * object.c: Backport #2364 [ruby-core:26733]; Allow result of to_f to be NaN to permit conversion from BigDecimal('NaN') to Float.
+ * object.c: Backport #2364 [ruby-core:26733]; Allow result of to_f to be NaN to permit conversion from BigDecimal('NaN') to Float. r28392
Tue Jun 22 04:29:00 Kirk Haines <khaines@ruby-lang.org>