sup

A curses threads-with-tags style email client

sup.git

git clone https://supmua.dev/git/sup/
commit b71b3a9acc348d998dc485aca2b55c443b186957
parent ec36d80f4fd14548608717f84588fab96fc734d5
Author: wmorgan <wmorgan@5c8cc53c-5e98-4d25-b20a-d8db53a31250>
Date:   Mon, 10 Dec 2007 01:05:56 +0000

prevent warning

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

Diffstat:
M lib/sup/message.rb | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/lib/sup/message.rb b/lib/sup/message.rb
@@ -370,7 +370,7 @@ private
       ## otherwise, it's body text
       else
         body = Message.convert_from m.decode, m.charset
-        text_to_chunks (body || "").normalize_whitespace.split("\n")
+        text_to_chunks((body || "").normalize_whitespace.split("\n"))
       end
     end
   end