From: William Morgan Date: Wed, 24 Jun 2009 13:42:26 +0000 (-0400) Subject: fix missing part of a previous merge X-Git-Url: https://git.cworth.org/git?a=commitdiff_plain;h=c6e092f7082f2a62effbba6049d3500e46fe0d00;p=sup fix missing part of a previous merge --- diff --git a/lib/sup/mbox/loader.rb b/lib/sup/mbox/loader.rb index ff41d51..831c717 100644 --- a/lib/sup/mbox/loader.rb +++ b/lib/sup/mbox/loader.rb @@ -85,7 +85,7 @@ class Loader < Source @mutex.synchronize do @f.seek cur_offset string = "" - until @f.eof? || (l = @f.gets) =~ BREAK_RE + until @f.eof? || MBox::is_break_line?(l = @f.gets) string << l end self.cur_offset += string.length