method
search_file
v1_8_7_72 -
Show latest stable
- Class:
IRB::Locale
search_file(path, file)private
No documentation available.
# File lib/irb/locale.rb, line 155
def search_file(path, file)
if File.exist?(p1 = path + lc_path(file, "C"))
if File.exist?(p2 = path + lc_path(file))
return p2
else
end
return p1
else
end
nil
end