]> git.donarmstrong.com Git - lilypond.git/blobdiff - lily/forbid-break-engraver.cc
* flower
[lilypond.git] / lily / forbid-break-engraver.cc
index 66d78a666031ee192483a73d02c1f814ff1e6460..fa4138bc48739631c785ea60cbfe94725b350182 100644 (file)
@@ -4,7 +4,6 @@
   source file of the GNU LilyPond music typesetter
 
   (c) 2002--_2005 Han-Wen Nienhuys <hanwen@xs4all.nl>
-
 */
 #include "rhythmic-head.hh"
 #include "grob.hh"
@@ -24,14 +23,13 @@ Forbid_line_break_engraver::start_translation_timestep ()
 {
   /*
     Check for running note heads. This should probably be done elsewhere.
-   */
+  */
   SCM busy = get_property ("busyGrobs");
 
   Moment now = now_mom ();
   while (scm_is_pair (busy) && unsmob_moment (scm_caar (busy))->main_part_ == now.main_part_)
     busy = scm_cdr (busy);
 
-  
   while (scm_is_pair (busy))
     {
       Grob *g = unsmob_grob (scm_cdar (busy));
@@ -43,11 +41,10 @@ Forbid_line_break_engraver::start_translation_timestep ()
     }
 }
 
-
 ADD_TRANSLATOR (Forbid_line_break_engraver,
-/* descr */       "Forbid line breaks when note heads are still playing at some point.",
-/* creats*/       "",
-/* accepts */     "",
-/* acks  */      "",
-/* reads */       "busyGrobs",
-/* write */       "");
+               /* descr */ "Forbid line breaks when note heads are still playing at some point.",
+               /* creats*/ "",
+               /* accepts */ "",
+               /* acks  */ "",
+               /* reads */ "busyGrobs",
+               /* write */ "");