sup

A curses threads-with-tags style email client

sup.git

git clone https://supmua.dev/git/sup/
commit 9467fd20f3098434e70199609c2a26a936c7a163
parent d9fbdbe32b7646d837844e5ba2360fa044da203e
Author: wmorgan <wmorgan@5c8cc53c-5e98-4d25-b20a-d8db53a31250>
Date:   Sun,  8 Jul 2007 15:17:08 +0000

fix extra blank line weirdness

git-svn-id: svn://rubyforge.org/var/svn/sup/trunk@484 5c8cc53c-5e98-4d25-b20a-d8db53a31250

Diffstat:
M lib/sup/modes/edit-message-mode.rb | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/lib/sup/modes/edit-message-mode.rb b/lib/sup/modes/edit-message-mode.rb
@@ -188,11 +188,11 @@ protected
     if @attachments.empty?
       m.header["Content-Disposition"] = "inline"
       m.header["Content-Type"] = "text/plain; charset=#{$encoding}"
-      m.body = @body.join "\n"
+      m.body = @body.join
       m.body += sig_lines.join("\n") unless $config[:edit_signature]
     else
       body_m = RMail::Message.new
-      body_m.body = @body.join "\n"
+      body_m.body = @body.join
       body_m.body += sig_lines.join("\n") unless $config[:edit_signature]
       
       m.add_part body_m