sup

A curses threads-with-tags style email client

sup.git

git clone https://supmua.dev/git/sup/
commit 9c47a30c9a6cdff6d1b7eadbaaa8865acbab238c
parent 5a68fe5df5db8d99d6ebd49cf6d841253748ed41
Author: wmorgan <wmorgan@5c8cc53c-5e98-4d25-b20a-d8db53a31250>
Date:   Thu, 11 Jan 2007 19:07:36 +0000

minor cleanups


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

Diffstat:
M bin/sup-import | 1 -
M lib/sup/modes/thread-index-mode.rb | 1 -
2 files changed, 0 insertions(+), 2 deletions(-)
diff --git a/bin/sup-import b/bin/sup-import
@@ -5,7 +5,6 @@ require 'rubygems'
 require 'highline/import'
 require "sup"
 
-
 Thread.abort_on_exception = true # make debugging possible
 
 class Float
diff --git a/lib/sup/modes/thread-index-mode.rb b/lib/sup/modes/thread-index-mode.rb
@@ -163,7 +163,6 @@ class ThreadIndexMode < LineCursorMode
   end
 
   def jump_to_next_new
-    t = @threads[curpos] or return
     n = ((curpos + 1) ... lines).find { |i| @threads[i].has_label? :unread }
     n = (0 ... curpos).find { |i| @threads[i].has_label? :unread } unless n
     if n