]> git.donarmstrong.com Git - lilypond.git/blobdiff - input/regression/music-function.ly
Merge branch 'lilypond/translation' of ssh://trettig@git.sv.gnu.org/srv/git/lilypond...
[lilypond.git] / input / regression / music-function.ly
index 680a9162eabe9913f151c2f35fff9f0e82828c0b..6bca8bbda59136c98b9dc967d1f35d974afc6123 100644 (file)
@@ -1,15 +1,15 @@
 \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."
 
 }
-\version "2.7.32"
+\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))
@@ -17,6 +17,6 @@ myBar = #(def-music-function (parser location bar-type) (string?)
 \layout { ragged-right = ##t }
 
 {
-    d4 \myBar #"|:" d4
+    d4 \myBar "|:" d4
 }