Revert "Fix syntax error in fret-diagrams.ly"
[lilypond/csorensen.git] / input / regression / fingering-cross-staff.ly
blob1fa30c1f212faf120a56a2ed003fb6ee383b951c
1 \version "2.11.44"
3 \header {
4 texidoc = "Fingerings work correctly with cross-staff beams."
7 music = \relative c {
8 \change Staff = "down"
9 c8 e g-1
10 \change Staff = "up"
11 e'-2 g-3 c-5
12 \change Staff = "down"
13 e,-3[ g,-1]
16 \score {
17 \new PianoStaff <<
18 \new Staff="up" \new Voice {
19 \stemUp \music }
20 \new Staff="down" \new Voice {
21 \clef bass \stemDown
22 \override Fingering #'direction = #down
23 \transpose c c, \music }