]> git.donarmstrong.com Git - lilypond.git/blobdiff - input/test/reverse-music.ly
Fix some bugs in the dynamic engraver and PostScript backend
[lilypond.git] / input / test / reverse-music.ly
index 390fa7f8c24c322df201ff321807bb872295ed64..828afcd59b3254b24dc657f44ad34c9627e7aac9 100644 (file)
@@ -1,5 +1,5 @@
 
-\version "2.2.0"
+\version "2.7.39"
 % possible rename to scheme-something.
 \header { texidoc="@cindex Scheme Reverse Music
 Symmetric, or palindromical music can be produced, first, by printing
@@ -8,7 +8,7 @@ function to reverse the syntax.
 "
 }
 
-music = \notes \relative c'' { c4 d4( e4 f4 }
+music =  \relative c'' { c4 d4( e4 f4 }
 
 #(define (reverse-music music)
   (let* ((elements (ly:music-property music 'elements))
@@ -33,9 +33,9 @@ music = \notes \relative c'' { c4 d4( e4 f4 }
 \score {
   \context Voice {
     \music
-    \apply #reverse-music \music
+    \applyMusic #reverse-music \music
   }
-  \paper { raggedright = ##t}
+  \layout { ragged-right = ##t}
 }