Skip to content

Commit

Permalink
FIX issue jonstoler#17
Browse files Browse the repository at this point in the history
  • Loading branch information
user committed Nov 22, 2018
1 parent 13731a5 commit d7003f2
Showing 1 changed file with 1 addition and 6 deletions.
7 changes: 1 addition & 6 deletions toml.lua
Original file line number Diff line number Diff line change
Expand Up @@ -19,12 +19,7 @@ TOML.parse = function(toml, options)
local ws = "[\009\032]"

-- the official TOML definition of newline
local nl = "[\10"
do
local crlf = "\13\10"
nl = nl .. crlf
end
nl = nl .. "]"
local nl = "\13?\10"

-- stores text data
local buffer = ""
Expand Down

0 comments on commit d7003f2

Please sign in to comment.