From mboxrd@z Thu Jan 1 00:00:00 1970 From: ezyang@MIT.EDU (Edward Z. Yang) Date: Mon, 08 Jun 2009 22:23:44 -0400 Subject: [sup-talk] Sup annoyances In-Reply-To: <1244506405-sup-5117@javelin> References: <1244270435-sup-9288@javelin> <1244481844-sup-9094@entry> <1244502545-sup-9840@javelin> <1244503985-sup-8587@entry> <1244506405-sup-5117@javelin> Message-ID: <1244514081-sup-2943@javelin> Excerpts from Edward Z. Yang's message of Mon Jun 08 22:13:17 -0400 2009: > I am somewhat skeptical of your described change, but I will try it > out and report back. The threaded version would certainly be a nice > thing. It works, although it acts a bit strangely when there are still threads loading into memory. >From b2518f113118e489e22a1c2085b33a9c18721f97 Mon Sep 17 00:00:00 2001 From: Edward Z. Yang Date: Mon, 8 Jun 2009 22:21:01 -0400 Subject: [PATCH] Remove message pre-loading; optimizes for the common case. Signed-off-by: Edward Z. Yang --- lib/sup/modes/thread-index-mode.rb | 1 - 1 files changed, 0 insertions(+), 1 deletions(-) diff --git a/lib/sup/modes/thread-index-mode.rb b/lib/sup/modes/thread-index-mode.rb index 9b44ee3..29de39a 100644 --- a/lib/sup/modes/thread-index-mode.rb +++ b/lib/sup/modes/thread-index-mode.rb @@ -103,7 +103,6 @@ EOS t.each_with_index do |(m, *o), i| next unless m BufferManager.say "#{message} (#{i}/#{num})", sid if t.size > 1 - m.load_from_source! end end mode = ThreadViewMode.new t, @hidden_labels, self -- 1.6.0.4