summaryrefslogtreecommitdiff
path: root/lib/irb/notifier.rb
diff options
context:
space:
mode:
authorkeiju <keiju@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2005-04-14 06:16:08 +0000
committerkeiju <keiju@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2005-04-14 06:16:08 +0000
commit2ac523a89143f5d39239382e9e60f7d6e63657a0 (patch)
tree0c48d057a18adddc60b9aadd6120323ec5acf2a6 /lib/irb/notifier.rb
parentff958cd44ea40ddd83f3ac4566ad5517c70b996b (diff)
downloadruby-2ac523a89143f5d39239382e9e60f7d6e63657a0.tar.gz
* lib/irb/notifier.rb, lib/irb/output-method.rb, lib/irb/ext/history.rb
fixed warning of 'ruby -w' git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@8326 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'lib/irb/notifier.rb')
-rw-r--r--lib/irb/notifier.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/irb/notifier.rb b/lib/irb/notifier.rb
index 22752bf894..c8e66fa859 100644
--- a/lib/irb/notifier.rb
+++ b/lib/irb/notifier.rb
@@ -52,7 +52,7 @@ module IRB
def puts(*objs)
if notify?
- @base_notifier.puts *objs.collect{|obj| prefix + obj.to_s}
+ @base_notifier.puts(*objs.collect{|obj| prefix + obj.to_s})
end
end