diff options
Diffstat (limited to '')
-rwxr-xr-x | src/CheckBasicStyle.lua | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/CheckBasicStyle.lua b/src/CheckBasicStyle.lua index bd9430e59..8d188bb67 100755 --- a/src/CheckBasicStyle.lua +++ b/src/CheckBasicStyle.lua @@ -237,7 +237,7 @@ local function ProcessFile(a_FileName) local lineCounter = 1 local lastIndentLevel = 0 local isLastLineControl = false - all:gsub("\r\n", "\n") -- normalize CRLF into LF-only + all = all:gsub("\r\n", "\n") -- normalize CRLF into LF-only string.gsub(all .. "\n", "[^\n]*\n", -- Iterate over each line, while preserving empty lines function(a_Line) -- Check against each violation pattern: |