]> git.donarmstrong.com Git - lilypond.git/commitdiff
Convert \bar "||:" -> \bar ".|" if not called at line break.
authorNeil Puttock <n.puttock@gmail.com>
Thu, 4 Feb 2010 22:58:59 +0000 (22:58 +0000)
committerNeil Puttock <n.puttock@gmail.com>
Thu, 4 Feb 2010 22:58:59 +0000 (22:58 +0000)
lily/span-bar.cc

index a5602934f4928cd55e8487da602c4a9b2da64001..3ef38ec8125e9a2ac5ea291632511860c988a3be 100644 (file)
@@ -191,7 +191,7 @@ Span_bar::calc_glyph_name (SCM smob)
     }
 
   string type = ly_scm2string (gl);
-  if (type == "|:")
+  if (type == "|:" || type == "||:")
     type = ".|";
   else if (type == ":|")
     type = "|.";