]> git.donarmstrong.com Git - lilypond.git/blobdiff - lily/span-bar-engraver.cc
*** empty log message ***
[lilypond.git] / lily / span-bar-engraver.cc
index f374931ceecb489a947bbce9761e758c8a2b6a7d..7b54329835b87055c29eb8c9a8b6ba1c5b93b26a 100644 (file)
@@ -61,10 +61,10 @@ Span_bar_engraver::stop_translation_timestep ()
 {
   if (spanbar_) 
     {
-      for (int i= 0; i < bars_.size () ; i++)
+      for (int i = 0; i < bars_.size () ; i++)
        Span_bar::add_bar (spanbar_,bars_[i]);
 
-      SCM vissym =ly_symbol2scm ("break-visibility");
+      SCM vissym = ly_symbol2scm ("break-visibility");
       SCM vis = bars_[0]->internal_get_property (vissym);        
       if (ly_c_equal_p (spanbar_->internal_get_property (vissym), vis))
        spanbar_->internal_set_property (vissym, vis);
@@ -76,7 +76,7 @@ Span_bar_engraver::stop_translation_timestep ()
 }
 
 
-ENTER_DESCRIPTION (Span_bar_engraver,
+ADD_TRANSLATOR (Span_bar_engraver,
 /* descr */       "This engraver makes cross-staff barlines: It catches all normal "
 "bar lines, and draws a single span-bar across them.",
 /* creats*/       "SpanBar",