]> git.donarmstrong.com Git - lilypond.git/blobdiff - lily/script-column-engraver.cc
* lily/tie-column.cc (new_directions): put Tie down on center
[lilypond.git] / lily / script-column-engraver.cc
index 2bb3c88bdac25f330be16c0f18eecb98487c4a72..5e9c668093bc9e6a6331576521480690c684b3a8 100644 (file)
@@ -12,7 +12,6 @@
 
 #include "translator.icc"
 
-
 /**
    Find potentially colliding scripts, and put them in a
    Script_column, that will fix the collisions.  */
@@ -49,9 +48,7 @@ Script_column_engraver::acknowledge_side_position (Grob_info inf)
     {
       if (!Item::is_breakable (thing)
          && Side_position_interface::get_axis (inf.grob ()) == Y_AXIS)
-       {
-         scripts_.push (thing);
-       }
+       scripts_.push (thing);
     }
 }
 
@@ -59,9 +56,7 @@ void
 Script_column_engraver::process_acknowledged ()
 {
   if (!scol_ && scripts_.size () > 1)
-    {
-      scol_ = make_item ("ScriptColumn", SCM_EOL);
-    }
+    scol_ = make_item ("ScriptColumn", SCM_EOL);
 
   if (scol_)
     {
@@ -72,8 +67,8 @@ Script_column_engraver::process_acknowledged ()
 }
 ADD_ACKNOWLEDGER (Script_column_engraver, side_position);
 ADD_TRANSLATOR (Script_column_engraver,
-               /* descr */ "",
-               /* creats*/ "ScriptColumn",
-               /* accepts */ "",
-               /* reads */ "",
+               /* doc */ "",
+               /* creat*/ "ScriptColumn",
+               /* accept */ "",
+               /* read */ "",
                /* write */ "");