]> git.donarmstrong.com Git - lilypond.git/commitdiff
input/regression/tablature-letter.ly: make use of \markuplist
authorDavid Kastrup <dak@gnu.org>
Fri, 28 Oct 2011 09:45:40 +0000 (11:45 +0200)
committerGraham Percival <graham@percival-music.ca>
Sat, 29 Oct 2011 06:39:53 +0000 (07:39 +0100)
input/regression/tablature-letter.ly

index e2d8c94a8ad691d9344bd1273f61dca25cdc5b1d..2f808613e3f2d3c7e0b367371624b428760625f2 100644 (file)
@@ -1,4 +1,4 @@
-\version "2.15.16"
+\version "2.15.17"
 
 \header {
   texidoc = "
@@ -16,13 +16,13 @@ if the length is too short.
 notes = \relative c' {
   \time 3/4
   <f d>4. <bes>8 <g e>4
-  \set fretLabels = #`("a" "b" ,(markup #:italic #:smaller "c"))
+  \set fretLabels = \markuplist {"a" "b" \italic \smaller "c"}
   <f d>4. <bes>8 <g e>4
-  \set fretLabels = #`(,(markup #:with-color red "a")
+  \set fretLabels = \markuplist {\with-color #red "a"
                        "b"
-                       ,(markup #:italic #:smaller "c"))
+                       \italic \smaller "c"}
   <f d>4. <bes>8 <g e>4
-  \set fretLabels = #'("α" "β" "γ")
+  \set fretLabels = \markuplist {"α" "β" "γ"}
   <f d>4. <bes>8 <g e>4
 }