]> git.donarmstrong.com Git - lilypond.git/commitdiff
(pending_moment): don't
authorhanwen <hanwen>
Tue, 20 Jan 2004 17:04:29 +0000 (17:04 +0000)
committerhanwen <hanwen>
Tue, 20 Jan 2004 17:04:29 +0000 (17:04 +0000)
check run_always ().

ChangeLog
lily/simultaneous-music-iterator.cc

index 6fa1225259b0b315e0f9e5b2539885cd510c426f..c283e4c0858e12cd4182083d147a543e396570b6 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,5 +1,10 @@
 2004-01-20  Han-Wen Nienhuys   <hanwen@xs4all.nl>
 
+       * lily/simultaneous-music-iterator.cc (pending_moment): don't
+       check run_always ().
+
+       * VERSION: release 2.1.13
+
        * input/regression/note-head-style.ly (pattern): cleanup.
 
        * mf/GNUmakefile ($(outdir)/$(redhat-package)): use http for
index a222cf08561d162ca7256cb7ec062b07bd4553a1..efb2965aee169d252fa8285bc7b8b58332911757 100644 (file)
@@ -161,8 +161,7 @@ Simultaneous_music_iterator::pending_moment () const
   for (SCM s = children_list_; gh_pair_p (s); s = gh_cdr(s))
     {
       Music_iterator * it = unsmob_iterator (gh_car (s));
-      if (!it-> run_always ())
-       next = next <? it->pending_moment ();
+      next = next <? it->pending_moment ();
     }
   
   return next;