From: Neil Puttock Date: Thu, 4 Feb 2010 22:58:59 +0000 (+0000) Subject: Convert \bar "||:" -> \bar ".|" if not called at line break. X-Git-Tag: release/2.13.13-1~36 X-Git-Url: https://git.donarmstrong.com/lilypond.git?a=commitdiff_plain;h=50bbf0233e7cb45a295d95f5e355e64aad762d70;p=lilypond.git Convert \bar "||:" -> \bar ".|" if not called at line break. --- diff --git a/lily/span-bar.cc b/lily/span-bar.cc index a5602934f4..3ef38ec812 100644 --- a/lily/span-bar.cc +++ b/lily/span-bar.cc @@ -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 = "|.";