]> git.donarmstrong.com Git - lilypond.git/blobdiff - input/regression/key-signature-scordatura.ly
Merge remote-tracking branch 'origin/translation' into staging
[lilypond.git] / input / regression / key-signature-scordatura.ly
index df3a5fb41830337e6a51a8cc20c4bed8e81370a2..547fe7688ed9447ca574a6f2dc704bb115efaf46 100644 (file)
@@ -1,19 +1,19 @@
 
-\version "2.7.13"
+\version "2.19.7"
 
-\header { texidoc = "By setting @code{Staff.keySignature} directly,
+\header { texidoc = "By setting @code{Staff.keyAlterations} directly,
 key signatures can be set invidually per pitch.
 "
 
       }
 \layout {
-    raggedright = ##T
+    ragged-right = ##T
 }
 \relative c'
 \new Staff {
-    \set Staff.keySignature = #'(((1 .  2) . 1) ((0 . 3) . -1))
+    \set Staff.keyAlterations = #`(((0 . 3) . ,FLAT) ((1 .  2) . ,SHARP))
     f8 a c e
-    \set Staff.keySignature = #'(((1 .  2) . -1) ((0 . 4) . 2))
+    \set Staff.keyAlterations = #`(((0 . 4) . ,DOUBLE-SHARP) ((1 .  2) . ,FLAT))
     e a, g a
 }