prelude.rb (Kernel#pp): Fix a delegation bug

git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@60945 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
mame 2017-11-30 02:12:42 +00:00
parent 23c1fccf83
commit faae29f869
1 changed files with 1 additions and 1 deletions

View File

@ -148,6 +148,6 @@ module Kernel
# pp returns argument(s).
def pp(*objs)
require 'pp'
pp(objs)
pp(*objs)
end
end