commit f138f3d24c079b676a7a3cdde875abd80ef123ed
parent 88aa9bb402c566aef405ccf20bcf3a2bd8eadafd
Author: wmorgan <wmorgan@5c8cc53c-5e98-4d25-b20a-d8db53a31250>
Date: Wed, 14 Nov 2007 15:54:35 +0000
Text bugfix from Brendan O'Connor
git-svn-id: svn://rubyforge.org/var/svn/sup/trunk@699 5c8cc53c-5e98-4d25-b20a-d8db53a31250
Diffstat:
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/lib/sup/message-chunks.rb b/lib/sup/message-chunks.rb
@@ -111,7 +111,7 @@ EOS
@lines = lines.map { |l| l.chomp.wrap WRAP_LEN }.flatten # wrap
## trim off all empty lines except one
- lines.pop while lines.last =~ /^\s*$/
+ @lines.pop while @lines.last =~ /^\s*$/
end
def inlineable?; true end