* lib/pstore.rb (PStore#transaction): return the result from the

block.  [ruby-core:17718]


git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@18012 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
nobu 2008-07-10 13:06:03 +00:00
Родитель 4f1b06aabd
Коммит d238b7c627
2 изменённых файлов: 6 добавлений и 1 удалений

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

@ -1,3 +1,8 @@
Thu Jul 10 22:06:00 2008 Nobuyoshi Nakada <nobu@ruby-lang.org>
* lib/pstore.rb (PStore#transaction): return the result from the
block. [ruby-core:17718]
Thu Jul 10 21:15:49 2008 Masaki Suketa <masaki.suketa@nifty.ne.jp>
* test/win32ole/test_win32ole_typelib.rb: add some illegal argument

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

@ -345,9 +345,9 @@ class PStore
end
end
end
value
ensure
@transaction = false
value
end
private