mirror of
https://github.com/KevinMidboe/linguist.git
synced 2025-10-29 17:50:22 +00:00
Only search the first 4K chars for \r
This commit is contained in:
@@ -226,7 +226,7 @@ module Linguist
|
|||||||
# Returns true when mac format is detected.
|
# Returns true when mac format is detected.
|
||||||
def mac_format?
|
def mac_format?
|
||||||
return if !viewable?
|
return if !viewable?
|
||||||
if pos = data.index("\r")
|
if pos = data[0, 4096].index("\r")
|
||||||
data[pos + 1] != ?\n
|
data[pos + 1] != ?\n
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
|
|||||||
Reference in New Issue
Block a user