]> git.donarmstrong.com Git - lilypond.git/blobdiff - Documentation/snippets/compound-time-signatures.ly
LSR: Update.
[lilypond.git] / Documentation / snippets / compound-time-signatures.ly
index 7ac2b6418d4cc85371f3a10d0bf5c8a103257426..4e6045fe4c069764ce23ab1e920840de57099b82 100644 (file)
@@ -59,12 +59,11 @@ database.)
 
 
 #(define ((compound-time one two num) grob)
-  (grob-interpret-markup grob
-    (markup #:override '(baseline-skip . 0) #:number
-      (#:line (
-          (#:column (one num))
-          #:vcenter "+"
-          (#:column (two num)))))))
+   (grob-interpret-markup grob
+                          (markup #:override '(baseline-skip . 0) #:number
+                                  (#:line ((#:column (one num))
+                                           #:vcenter "+"
+                                           (#:column (two num)))))))
 
 \relative c' {
   \override Staff.TimeSignature #'stencil = #(compound-time "2" "3" "8")