diff options
author | hut <hut@lavabit.com> | 2009-07-06 18:03:10 +0200 |
---|---|---|
committer | hut <hut@lavabit.com> | 2009-07-06 18:03:10 +0200 |
commit | a96af8f0ff240db4e6a9c494e9de9290d885b9aa (patch) | |
tree | bd0a6ea92e835304db0752168ceee2e47bed0d98 /code/fm.rb | |
parent | 8be178ebc3fa863e543e3df3f85ca76b20ce4017 (diff) | |
download | ranger-a96af8f0ff240db4e6a9c494e9de9290d885b9aa.tar.gz |
Fm.externally works without blocks too now.
Diffstat (limited to 'code/fm.rb')
-rw-r--r-- | code/fm.rb | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/code/fm.rb b/code/fm.rb index cb7dacb6..d6697eda 100644 --- a/code/fm.rb +++ b/code/fm.rb @@ -114,10 +114,8 @@ module Fm end def externally(&block) - return unless block_given? - closei - yield + yield if block_given? starti end |