X-Git-Url: https://git.donarmstrong.com/?a=blobdiff_plain;f=input%2Fregression%2Fkey-signature-scordatura.ly;h=cfad4a74bfd579fd63fef6a60f36581c37b26be0;hb=0fb49264de3177b1bde8677e32e3cb1cb712f8f9;hp=7d1e3c99d795d43816b3c7de4191336c4ae619c1;hpb=197f00037dc4c9e7bd17368f50d11dd8cde7a994;p=lilypond.git diff --git a/input/regression/key-signature-scordatura.ly b/input/regression/key-signature-scordatura.ly index 7d1e3c99d7..cfad4a74bf 100644 --- a/input/regression/key-signature-scordatura.ly +++ b/input/regression/key-signature-scordatura.ly @@ -1,18 +1,19 @@ -\version "2.1.22" +\version "2.10.0" -\header { texidoc = "Key signatures can be set per pitch -individually. This can be done by setting @code{Staff.keySignature} -directly." +\header { texidoc = "By setting @code{Staff.keySignature} directly, +key signatures can be set invidually per pitch. +" + } +\layout { + ragged-right = ##T } -\score { \notes \relative c' -\context Staff { - \set Staff.keySignature = #'(((1 . 2) . 1) ((0 . 3) . -1)) - f8 a c e - \set Staff.keySignature = #'(((1 . 2) . -1) ((0 . 4) . 2)) - e a, g a -} +\new Staff { + \set Staff.keySignature = #`(((1 . 2) . ,SHARP) ((0 . 3) . ,FLAT)) + f8 a c e + \set Staff.keySignature = #`(((1 . 2) . ,FLAT) ((0 . 4) . ,DOUBLE-SHARP)) + e a, g a }