Skip to content

Commit

Permalink
changelog
Browse files Browse the repository at this point in the history
  • Loading branch information
Hoizame committed Aug 28, 2019
1 parent e258d20 commit 222d6b6
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 1 deletion.
2 changes: 1 addition & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,5 +6,5 @@ This mod is distributed under Version 2 of the GPL. A copy of the GPL is includ

## v1.1.7-beta (Aug. 27, 2019)

- Translation update
- Translation update from curseforge
- Some small fixes
4 changes: 4 additions & 0 deletions babelfish.lua
Original file line number Diff line number Diff line change
Expand Up @@ -218,6 +218,10 @@ local function ParseLuaFile(fileName)
if not oneLineCom and not multiComment then
if tmp == IDENTIFIER and c == "[" then
start = true
elseif tmp == IDENTIFIER and c ~= "[" then
loc, start, tmp = nil, false, ""
elseif start and c ~= "\"" and not loc then --start
loc, start, tmp = nil, false, ""
elseif start and c == "\"" and not loc then --start
loc = ""
elseif loc and start and c == "\"" and lastC ~= "\\" then
Expand Down

0 comments on commit 222d6b6

Please sign in to comment.