about summary refs log tree commit diff stats
diff options
context:
space:
mode:
-rw-r--r--code/fm.rb4
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