]> git.donarmstrong.com Git - lilypond.git/blob - input/regression/glissando-index.ly
Imported Upstream version 2.14.2
[lilypond.git] / input / regression / glissando-index.ly
1 % FIXME: this is a fake version number to allow git master
2 % to compile.  See discussion on lilypond-devel.
3 \version "2.14.0"
4
5 \header {
6   texidoc = "Individual glissandi within a chord can be tweaked."
7 }
8
9 \relative c' {
10   \once \override Voice . Glissando #'style =
11     #(lambda (grob)
12        (if (eq? 1 (ly:grob-property grob 'glissando-index)) 'zigzag 'default))
13   <d f a>1 \glissando s1 <f a c>
14 }