X-Git-Url: https://git.donarmstrong.com/?a=blobdiff_plain;ds=sidebyside;f=input%2Fregression%2Fkey-signature-scordatura.ly;h=f00fd1c23c6e7864995f2412c6ae1b971a47cd0d;hb=cf7576678883f85d32137df21d5757a9a8f59629;hp=d810d4471a3031c29408616b2bfd7e4456a9b348;hpb=955f829883aa125b2b633b1e71f6256da5b773fa;p=lilypond.git diff --git a/input/regression/key-signature-scordatura.ly b/input/regression/key-signature-scordatura.ly index d810d4471a..f00fd1c23c 100644 --- a/input/regression/key-signature-scordatura.ly +++ b/input/regression/key-signature-scordatura.ly @@ -1,18 +1,19 @@ -#(ly:set-option 'old-relative) -\version "1.9.0" -\header { texidoc = "Key signatures can be set per pitch -individually. This can be done by setting @code{Staff.keySignature} -directly." +\version "2.12.0" +\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 { - \property Staff.keySignature = #'(((1 . 2) . 1) ((0 . 3) . -1)) - f8 a c e - \property Staff.keySignature = #'(((1 . 2) . -1) ((0 . 4) . 2)) - e a, g a -} +\new Staff { + \set Staff.keySignature = #`(((0 . 3) . ,FLAT) ((1 . 2) . ,SHARP)) + f8 a c e + \set Staff.keySignature = #`(((0 . 4) . ,DOUBLE-SHARP) ((1 . 2) . ,FLAT)) + e a, g a }