commit c6e092f7082f2a62effbba6049d3500e46fe0d00
parent ae549917ed4c6ad69b3c3b8cf696c261241cbd7d
Author: William Morgan <wmorgan-sup@masanjin.net>
Date: Wed, 24 Jun 2009 09:42:26 -0400
fix missing part of a previous merge
Diffstat:
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git 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