From: Han-Wen Nienhuys <hanwen@xs4all.nl>
Date: Sat, 21 Feb 2004 01:20:43 +0000 (+0000)
Subject: (process): only process if moment >= 0.
X-Git-Tag: release/2.1.26~6
X-Git-Url: https://git.donarmstrong.com/?a=commitdiff_plain;h=f2a26151280ce231701e2b22f69d04f7c0174c85;p=lilypond.git

(process): only process if moment >= 0.
---

diff --git a/lily/sequential-iterator.cc b/lily/sequential-iterator.cc
index b7d733aa25..f1c8fee84d 100644
--- a/lily/sequential-iterator.cc
+++ b/lily/sequential-iterator.cc
@@ -248,8 +248,8 @@ Sequential_iterator::process (Moment until)
       else
 	{
 	  Moment w = until - here_mom_ + iter_->music_start_mom ();
-	  if (w >= Moment (0)) 
-	    iter_->process (w);
+	  //	  if (w >= Moment (0)) 
+	  iter_->process (w);
 	}
       
       /*