* lib/irb/init.rb: bug fix. [ruby-dev: 26920]

git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@9047 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
keiju 2005-08-30 07:22:06 +00:00
Родитель da7d6381c9
Коммит d14de3ecc7
2 изменённых файлов: 4 добавлений и 1 удалений

Просмотреть файл

@ -1,3 +1,6 @@
Tue Aug 30 16:19:40 005 Keiju Ishitsuka <keiju@ruby-lang.org>
* lib/irb/init.rb: bug fix. [ruby-dev: 26920]
Tue Aug 30 12:45:15 2005 Yukihiro Matsumoto <matz@ruby-lang.org>
* eval.c (rb_f_send): do not call private methods if the receiver

Просмотреть файл

@ -193,7 +193,7 @@ module IRB
end
end
if RUBY_VERSION >= FEATURE_IOPT_CHANGE_VERSION
load_path.collect do |path|
load_path.collect! do |path|
/\A\.\// =~ path ? path : File.expand_path(path)
end
end