]> git.donarmstrong.com Git - lilypond.git/blobdiff - input/regression/context-mod-with.ly
Issue 4538: Provide \markupMap music function
[lilypond.git] / input / regression / context-mod-with.ly
index 83ce8b86a063ecd0c9813864f4b512c7e5767257..999c94bab80181caaac157f4ba0b5f76f20671aa 100644 (file)
@@ -1,4 +1,4 @@
-\version "2.16.0"
+\version "2.19.21"
 
 \header  {
 texidoc = "Context modifications can be stored into a variable as a
@@ -9,7 +9,7 @@ texidoc = "Context modifications can be stored into a variable as a
 ctxmod = \with {
   \remove "Time_signature_engraver"
   \consists "Ambitus_engraver"
-  \override StaffSymbol #'line-count = 4
+  \override StaffSymbol.line-count = 4
 }
 
 \layout {
@@ -26,17 +26,17 @@ ctxmod = \with {
 }
 
 
-music = \relative c'' { \key fis \minor c1 d e }
+music = \relative { \key fis \minor c''1 d e }
 
 \score { <<
-  \override Score.RehearsalMark #'self-alignment-X = #LEFT
-  \override Score.RehearsalMark #'font-size = #-2
+  \override Score.RehearsalMark.self-alignment-X = #LEFT
+  \override Score.RehearsalMark.font-size = #-2
   % No modifications:
   \new Staff { \mark \markup { No modifications } \music }
   \new Staff \with {
     \remove "Time_signature_engraver"
     \consists "Ambitus_engraver"
-    \override StaffSymbol #'line-count = 4
+    \override StaffSymbol.line-count = 4
   } {
     \mark
     \markup { "Remove time sig, add ambitus, set staff to 4 lines" }