]> git.donarmstrong.com Git - lilypond.git/blobdiff - lily/grace-iterator.cc
(recent_enough): interpret laziness
[lilypond.git] / lily / grace-iterator.cc
index 3611d5fcac4ada11b81ef0567c303ab304d379a7..d68bcad7b37ff7a1aeb3bd3f0a4af39d76c0ee78 100644 (file)
 void
 Grace_iterator::process (Moment m)
 {
-  Moment main ;
+  Moment main;
   main.main_part_ = - start_mom_.grace_part_ + m.grace_part_;
   Music_wrapper_iterator::process (main);
+
+  /* We can safely do this, since \grace should always be inside
+     sequential.  */
+  descend_to_child (child_iter_->get_outlet ());
 }
 
 Moment
 Grace_iterator::pending_moment () const
 {
-  Moment cp =Music_wrapper_iterator::pending_moment();
+  Moment cp =Music_wrapper_iterator::pending_moment ();
 
   Moment pending;
   pending.grace_part_ =  start_mom_.grace_part_ + cp.main_part_;