sup

A curses threads-with-tags style email client

sup.git

git clone https://supmua.dev/git/sup/
commit 053f4a827929f7101e7c98e1bb9248f6eaf006e3
parent 99e62d554493df30ee063b2bafb664caaf2263ab
Author: William Morgan <wmorgan-sup@masanjin.net>
Date:   Sun,  6 Sep 2009 09:37:42 -0400

Merge branch 'preemptive-loading' into next

Diffstat:
M lib/sup/modes/line-cursor-mode.rb | 2 --
1 file changed, 0 insertions(+), 2 deletions(-)
diff --git a/lib/sup/modes/line-cursor-mode.rb b/lib/sup/modes/line-cursor-mode.rb
@@ -19,7 +19,6 @@ class LineCursorMode < ScrollMode
     @load_more_thread = ::Thread.new do
       while true
         e = @load_more_q.pop
-        debug "calling callbacks on #{e.inspect}"
         @load_more_callbacks.each { |c| c.call e }
       end
     end
@@ -29,7 +28,6 @@ class LineCursorMode < ScrollMode
 
   def cleanup
     @load_more_thread.kill
-    debug "killing thread"
     super
   end