]> git.donarmstrong.com Git - lilypond.git/blobdiff - Documentation/ly-examples/cary-layout.ily
Run update-with-convert-ly, and run convert-ly manually on scm/*.scm
[lilypond.git] / Documentation / ly-examples / cary-layout.ily
index 67bc65936d9af8926fd6e9f459ce8f860217b123..97030d53df056ecc13a4ecd851f16702f09e683d 100644 (file)
@@ -1,5 +1,5 @@
 
-\version "2.14.0"
+\version "2.15.18"
 
 \layout {
   indent = #0
@@ -57,18 +57,18 @@ sffpp = #(make-dynamic-script "sffpp")
 beam = #(define-music-function (parser location left right) (number? number?)
        (cond ((and (= left 0) (> right 0))
                        #{
-                               \set stemRightBeamCount = #$right
+                               \set stemRightBeamCount = #right
                        #})
 
                        ((and (> left 0) (= right 0))
                        #{
-                               \set stemLeftBeamCount = #$left
+                               \set stemLeftBeamCount = #left
                        #})
 
                        (else
                        #{
-                               \set stemLeftBeamCount = #$left
-                               \set stemRightBeamCount = #$right
+                               \set stemLeftBeamCount = #left
+                               \set stemRightBeamCount = #right
                        #})
        )
 )