1
0
Fork 0
mirror of https://github.com/ruby/ruby.git synced 2022-11-09 12:17:21 -05:00

* golf_prelude.rb (Enumerator#inspect): avoid warning.

git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@21751 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
eban 2009-01-23 08:26:10 +00:00
parent 834e7488af
commit 3e76849cc8
2 changed files with 5 additions and 0 deletions

View file

@ -1,3 +1,7 @@
Fri Jan 23 17:24:31 2009 WATANABE Hirofumi <eban@ruby-lang.org>
* golf_prelude.rb (Enumerator#inspect): avoid warning.
Fri Jan 23 15:12:52 2009 Nobuyoshi Nakada <nobu@ruby-lang.org>
* lib/mkmf.rb (mkintpath): new function which converts native path

View file

@ -102,5 +102,6 @@ class Enumerator
to_a.#{meth}(*args, &block)
end"
}
alias old_inspect inspect
alias inspect old_to_s
end