Merge pull request #1522 from github/cl-heuristics

Heuristics on for .cl
This commit is contained in:
Arfon Smith
2014-09-24 10:58:40 -05:00

View File

@@ -19,6 +19,9 @@ module Linguist
if languages.all? { |l| ["ECL", "Prolog"].include?(l) }
result = disambiguate_ecl(data, languages)
end
if languages.all? { |l| ["Common Lisp", "OpenCL"].include?(l) }
result = disambiguate_cl(data, languages)
end
return result
end
end