From: Thomas Morley Date: Sun, 27 Apr 2014 21:00:26 +0000 (+0200) Subject: corrects typo in bar-line.scm X-Git-Tag: release/2.19.6-1~8 X-Git-Url: https://git.donarmstrong.com/?a=commitdiff_plain;h=5012705f74151e8c53f7bc41abf7094224d40ae2;p=lilypond.git 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. --- 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 ".|:-||" "||" ".|:" ".|")