]> git.donarmstrong.com Git - lilypond.git/blobdiff - input/regression/music-function.ly
build-coverage.sh script.
[lilypond.git] / input / regression / music-function.ly
index 8c6eb8ca26ade60e10f9c5594b4f456dc1345bc1..4c626d1f69a0b62f0a896c4843638aa57b7423d7 100644 (file)
@@ -7,16 +7,16 @@ demonstrate a @code{\myBar} function, which works similar to
 @code{\bar}, but is implemented completely in Scheme."
 
 }
-\version "2.6.0"
+\version "2.10.0"
 
-myBar = #(def-music-function (parser location bar-type) (string?)
+myBar = #(define-music-function (parser location bar-type) (string?)
           (context-spec-music
            (context-spec-music (make-property-set 'whichBar bar-type) 'Timing)
            'Score))
 
-\layout { raggedright = ##t }
+\layout { ragged-right = ##t }
 
 {
-    d4 \myBar #"|:" d4
+    d4 \myBar "|:" d4
 }