]> git.donarmstrong.com Git - lilypond.git/blob - input/regression/property-nested-revert.ly
Rerun scripts/auxiliar/update-with-convert-ly.sh
[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.17.6"
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 }