]> git.donarmstrong.com Git - lilypond.git/commitdiff
*** empty log message ***
authorHan-Wen Nienhuys <hanwen@xs4all.nl>
Sat, 9 Oct 2004 13:45:35 +0000 (13:45 +0000)
committerHan-Wen Nienhuys <hanwen@xs4all.nl>
Sat, 9 Oct 2004 13:45:35 +0000 (13:45 +0000)
ChangeLog
lily/auto-beam-engraver.cc
lily/bar-number-engraver.cc
lily/beam-engraver.cc
lily/chord-tremolo-engraver.cc
lily/multi-measure-rest-engraver.cc

index ef01edc548dee3edb0411c4d5d383f938cd92b56..edede6c420428654df54f8cbfad192b625e736f5 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -2,8 +2,6 @@
 
        * lily/*.cc: use robust_scm2moment() where appropriate.
 
-       * lily/tuplet-engraver.cc (try_music): 
-
        * lily/moment.cc (robust_scm2moment): new function.
 
        * scm/titling.scm (default-score-title): remove caps for piece.
index 0e8aa359798e42d11a0e5aabafc87af40a5580c1..186c923de4a43040229ee7a5101c00f825cbc59f 100644 (file)
@@ -188,7 +188,7 @@ Auto_beam_engraver::test_moment (Direction dir, Moment test_mom)
   /* end beam at end of beat */
   if (dir == STOP)
     {
-      moment = robust_scm2moment (get_property ("beatLength"), moment)
+      moment = robust_scm2moment (get_property ("beatLength"), moment);
     }
 
   /* second guess: property generic time exception */
index 96e4afb2e75d2b874f39e1747fbec36b57c70549..65e830441bfe92c18e9043bcc836fe3c45761cf9 100644 (file)
@@ -47,7 +47,7 @@ Bar_number_engraver::process_music ()
   
   if (scm_is_string (wb))
     {
-      Moment mp (robust_scm2moment (get_property ("measurePosition"),Moment (0));
+      Moment mp (robust_scm2moment (get_property ("measurePosition"),Moment (0)));
       if (mp.main_part_ == Rational (0))
        {
          SCM bn = get_property ("currentBarNumber");
index 07c45a7813d357ab3ab521a25b8e72b44da8ae82..727f329dd3fed139c8459f56f87a3edcf1a2c73a 100644 (file)
@@ -143,7 +143,7 @@ Beam_engraver::process_music ()
       set_melisma (true);
       prev_start_ev_ = start_ev_;
       beam_ = make_spanner ("Beam", start_ev_->self_scm ());
-      Moment mp (robust_scm2moment (get_property ("measurePosition"), Moment (0));
+      Moment mp (robust_scm2moment (get_property ("measurePosition"), Moment (0)));
 
       beam_start_location_ = mp;
       beam_start_mom_ = now_mom ();
index 41b5448fcd2a21a73dbe2d2af8ef0836d8b76e72..7e38969eb095b0a1d7ed5b83d03180a12702118b 100644 (file)
@@ -124,7 +124,6 @@ Chord_tremolo_engraver::process_music ()
       beam_ = make_spanner ("Beam", repeat_->self_scm ());
       beam_->set_property ("chord-tremolo", SCM_BOOL_T);
 
-      SCM smp = 
       beam_start_location_ = robust_scm2moment (get_property ("measurePosition"), Moment (0));
     }
 }
index d752115505a1242ad0ae620caad04d7dfb6540a0..08b4dda3858c286c47c2db99a0cf6a91ece066fd 100644 (file)
@@ -175,7 +175,7 @@ Multi_measure_rest_engraver::stop_translation_timestep ()
   
   
   
-  Moment mp(robust_scm2moment (get_property ("measurePosition"),  Moment (0));
+  Moment mp(robust_scm2moment (get_property ("measurePosition"),  Moment (0)));
 
   if (last_rest_)
     {
@@ -196,9 +196,9 @@ Multi_measure_rest_engraver::start_translation_timestep ()
 
   bar_seen_ = false;
 
-  Moment mp(robust_scm2moment (get_property ("measurePosition"),  Moment (0));
+  Moment mp (robust_scm2moment (get_property ("measurePosition"),  Moment (0)));
 
-  Moment now =now_mom ();
+  Moment now = now_mom ();
   if (mmrest_
       && now.main_part_ != last_main_moment_
       && mp.main_part_ == Rational (0))