]> git.donarmstrong.com Git - lilypond.git/blobdiff - input/regression/music-function.ly
Merge remote-tracking branch 'origin/master' into translation
[lilypond.git] / input / regression / music-function.ly
index 3708a03b586537425c48e4e3afecacc04fcbd1df..8f4da124fa0d81f6864b40a96f1b5adb7d9e897d 100644 (file)
@@ -1,22 +1,22 @@
 \header
 {
-    
-texidoc = "Music function are generic music transformation functions,
+
+texidoc = "Music functions are generic music transformation functions,
 which can be used to extend music syntax seamlessly.  Here we
-demonstrate a @code{\myBar} function, which works similar to
-@code{\bar}, but is implemented completely in Scheme."
+demonstrate a @code{\\myBar} function, which works similar to
+@code{\\bar}, but is implemented completely in Scheme."
 
 }
-\version "2.7.13"
+\version "2.17.5"
 
-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
 }