* lib/tempfile.rb (Tempfile#open): should return a value from the

block (if given).   [ruby-core:18394]

git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@19454 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
matz 2008-09-22 09:01:22 +00:00
Родитель 260c0e6a2f
Коммит 2c6e46896a
2 изменённых файлов: 5 добавлений и 2 удалений

Просмотреть файл

@ -1,3 +1,8 @@
Mon Sep 22 17:39:25 2008 Yukihiro Matsumoto <matz@ruby-lang.org>
* lib/tempfile.rb (Tempfile#open): should return a value from the
block (if given). [ruby-core:18394]
Mon Sep 22 11:17:51 2008 URABE Shyouhei <shyouhei@ruby-lang.org>
* include/ruby/encoding.h (enum): ISO C forbids comma at end of

Просмотреть файл

@ -187,8 +187,6 @@ class Tempfile < DelegateClass(File)
ensure
tempfile.close
end
nil
else
tempfile
end