diff options
-rw-r--r-- | src/mbox.lua | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/mbox.lua b/src/mbox.lua index 7724ae2..ed9e781 100644 --- a/src/mbox.lua +++ b/src/mbox.lua | |||
@@ -61,7 +61,7 @@ function _M.parse_from(from) | |||
61 | end | 61 | end |
62 | 62 | ||
63 | function _M.split_mbox(mbox_s) | 63 | function _M.split_mbox(mbox_s) |
64 | mbox = {} | 64 | local mbox = {} |
65 | mbox_s = string.gsub(mbox_s, "\r\n", "\n") .."\n\nFrom \n" | 65 | mbox_s = string.gsub(mbox_s, "\r\n", "\n") .."\n\nFrom \n" |
66 | local nj, i, j = 1, 1, 1 | 66 | local nj, i, j = 1, 1, 1 |
67 | while 1 do | 67 | while 1 do |