]> git.donarmstrong.com Git - lilypond.git/blobdiff - lily/span-bar.cc
Merge commit 'e63d4d6'
[lilypond.git] / lily / span-bar.cc
index 5c1c76e85590febc2e757f56c731e54ff27c874f..993fafe14a70581aad7f852c4d53f2b806056d04 100644 (file)
@@ -3,7 +3,7 @@
 
   source file of the GNU LilyPond music typesetter
 
-  (c) 1997--2006 Han-Wen Nienhuys <hanwen@xs4all.nl>
+  (c) 1997--2007 Han-Wen Nienhuys <hanwen@xs4all.nl>
 */
 
 #include "span-bar.hh"
@@ -62,7 +62,7 @@ Span_bar::print (SCM smobbed_me)
     {
       Grob *bar = elements[i];
       Interval ext = bar->extent (refp, Y_AXIS);
-      if (ext.is_empty ())
+      if (ext.is_empty () || to_boolean (bar->get_property ("transparent")))
        continue;
 
       extents.push_back (ext);
@@ -185,7 +185,7 @@ Span_bar::calc_glyph_name (SCM smob)
   else if (type == ":|:")
     type = ".|.";
 
-  return scm_makfrom0str (type.c_str ());
+  return ly_string2scm (type);
 }
 
 Interval
@@ -209,7 +209,7 @@ Span_bar::calc_bar_size (SCM smob)
   return scm_from_double (iv.length ());
 }
 
-ADD_INTERFACE (Span_bar, "span-bar-interface",
+ADD_INTERFACE (Span_bar,
               "A bar line that spanned between other barlines. This interface is "
               " used for  bar lines that connect different staves.",