From 50bbf0233e7cb45a295d95f5e355e64aad762d70 Mon Sep 17 00:00:00 2001 From: Neil Puttock Date: Thu, 4 Feb 2010 22:58:59 +0000 Subject: [PATCH] Convert \bar "||:" -> \bar ".|" if not called at line break. --- lily/span-bar.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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 = "|."; -- 2.39.2