]> git.donarmstrong.com Git - lilypond.git/blob - input/regression/property-nested-revert.ly
74a6023cb6d4e981149dc9db22882d1915a3fa1a
[lilypond.git] / input / regression / property-nested-revert.ly
1
2 \header
3 {
4   texidoc = "nested properties may also be reverted. This uses
5 Scheme list syntax."
6
7 }
8
9 \version "2.12.0"
10
11 \relative c' {
12   f2 \glissando c
13   \override Glissando #'bound-details #'right #'Y = #4
14   f2 \glissando c |
15   \override Glissando #'bound-details #'left #'Y = #-6
16   f2 \glissando c
17   \revert Glissando #'(bound-details right Y)
18   f2 \glissando c
19   \revert Glissando #'(bound-details left Y)
20   f2 \glissando c
21 }
22
23
24 \paper {
25   ragged-right = ##t
26 }