]> git.donarmstrong.com Git - lilypond.git/blobdiff - input/regression/music-function.ly
(start_translation_timestep): split
[lilypond.git] / input / regression / music-function.ly
index 0c538b655cb79cc0504da9f1d5d218bcbd3cd30a..259742869bbccc1bf1a687243ffa3911f0d3a122 100644 (file)
@@ -1,10 +1,13 @@
 \header
 {
+    
 texidoc = "Music function are generic music transformation functions,
-which can be used to extend music syntax seamlessly."
+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.3.1"
+\version "2.4.0"
 
 #(define myBar
   (ly:make-music-function
@@ -13,13 +16,11 @@ which can be used to extend music syntax seamlessly."
     (context-spec-music
      (context-spec-music (make-property-set 'whichBar type) 'Timing)
      'Score))
-    
     ))
 
-\score{
-    \notes {
-       d4 \myBar #"|:" d4
-       
-    }
+\layout { raggedright = ##t }
+
+{
+    d4 \myBar #"|:" d4
 }