Consider accidentals in optical spacing correction.
[lilypond.git] / input / regression / property-nested-override.ly
blobbfd63a7ed4fa4f820851de215e60e1d58d4663eb
1 \version "2.12.0"
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.
10 \relative c' {
11 \once \override TextSpanner #'bound-details #'left #'text = #"foo"
12 c4\startTextSpan
13 \once \override Tie #'details #'note-head-gap = #1
14 c4 ~ c c\stopTextSpan
16 \once \override TextSpanner #'(bound-details left text) = #"foo"
17 c4\startTextSpan
18 \once \override Tie #'(details note-head-gap) = #1
19 c4 ~ c c\stopTextSpan