Fix #8161, e31def197: Lang files may have LF EOL (#8163)

This commit is contained in:
glx22 2020-05-19 17:42:29 +02:00 committed by GitHub
parent b8a896d52c
commit f6223f8ac2
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 2 additions and 1 deletions

View File

@ -65,11 +65,12 @@ Sub Lookup(ini_key, str_id, outfile)
Dim f
Set f = CreateObject("ADODB.Stream")
f.Charset = "utf-8"
f.LineSeparator = 10 ' Assume lines end with \n even for \r\n files
f.Open
f.LoadFromFile(file.Path)
Do Until f.EOS
line = f.ReadText(-2)
line = Replace(f.ReadText(-2), Chr(13), "") ' Read a line and remove any \r
If InStr(1, line, "##isocode ") = 1 Then
p = Split(line)