From 5012705f74151e8c53f7bc41abf7094224d40ae2 Mon Sep 17 00:00:00 2001 From: Thomas Morley Date: Sun, 27 Apr 2014 23:00:26 +0200 Subject: [PATCH] corrects typo in bar-line.scm issue 3908 Missing space in (define-bar-line ":|]" ":|]" #f " |") caused bad visual output of VoltaBracket. Changed to (define-bar-line ":|]" ":|]" #f " | ") The space added will cause that the SpanBar x-extent will be calculated correctly to determine the gap between two VoltaBrackets. --- scm/bar-line.scm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scm/bar-line.scm b/scm/bar-line.scm index 1f3c09d234..ff2d3f29b4 100644 --- a/scm/bar-line.scm +++ b/scm/bar-line.scm @@ -1049,7 +1049,7 @@ of the volta brackets relative to the bar lines." (define-bar-line ":|." ":|." #f " |.") (define-bar-line ".|:" "|" ".|:" ".|") (define-bar-line "[|:" "|" "[|:" " |") -(define-bar-line ":|]" ":|]" #f " |") +(define-bar-line ":|]" ":|]" #f " | ") (define-bar-line ":|][|:" ":|]" "[|:" " | |") (define-bar-line ".|:-||" "||" ".|:" ".|") -- 2.39.2