method
search_file
search_file(path, file)
private
Hide source
# 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