sup

A curses threads-with-tags style email client

sup.git

git clone https://supmua.dev/git/sup/
commit 3111f9fff6ce291d1f89a46716420a8a23fb3bf0
parent a7b5e3306121f470c2c57197d3ab5e65e6fa35ed
Author: William Morgan <wmorgan-sup@masanjin.net>
Date:   Sun,  6 Sep 2009 09:37:08 -0400

remove debugging statements

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