From c6e092f7082f2a62effbba6049d3500e46fe0d00 Mon Sep 17 00:00:00 2001 From: William Morgan Date: Wed, 24 Jun 2009 09:42:26 -0400 Subject: [PATCH] fix missing part of a previous merge --- lib/sup/mbox/loader.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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 -- 2.45.2