]> git.donarmstrong.com Git - lilypond.git/blobdiff - input/regression/music-function.ly
Imported Upstream version 2.18.0
[lilypond.git] / input / regression / music-function.ly
index 0a1d36825a42503245aec2779dbb3c6679bd0c16..8f4da124fa0d81f6864b40a96f1b5adb7d9e897d 100644 (file)
@@ -1,13 +1,13 @@
 \header
 {
-    
+
 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.16.0"
+\version "2.17.5"
 
 myBar = #(define-music-function (parser location bar-type) (string?)
           (context-spec-music
@@ -17,6 +17,6 @@ myBar = #(define-music-function (parser location bar-type) (string?)
 \layout { ragged-right = ##t }
 
 {
-    d4 \myBar "|:" d4
+    d4 \myBar ".|:" d4
 }