]> git.donarmstrong.com Git - lilypond.git/blob - input/regression/property-nested-override.ly
Issue 5167/6: Changes: show \markup xxx = ... \etc assignments
[lilypond.git] / input / regression / property-nested-override.ly
1 \version "2.19.21"
2 \header {
3   texidoc = "Nested properties may be overridden using Scheme list
4 syntax.  This test performs two property overrides: the first
5 measure uses standard @code{\\override} syntax; the second uses a
6 list.
7 "
8 }
9
10 \relative {
11   \once \override TextSpanner.bound-details.left.text = #"foo"
12   c'4\startTextSpan
13   \once \override Tie.details.note-head-gap = #1
14   c4 ~ 4 c\stopTextSpan
15   
16   \once \override TextSpanner.bound-details.left.text = #"foo"
17   c4\startTextSpan
18   \once \override Tie.details.note-head-gap = #1
19   c4 ~ 4 c\stopTextSpan
20 }