]> git.donarmstrong.com Git - lilypond.git/blob - input/regression/tablature-zero-finger.ly
Issue 5167/6: Changes: show \markup xxx = ... \etc assignments
[lilypond.git] / input / regression / tablature-zero-finger.ly
1 \version "2.19.21"
2 #(ly:set-option 'warning-as-error #f)
3 #(ly:expect-warning (_ "No open string for pitch ~a") "#<Pitch f >")
4
5 \header {
6   texidoc="
7 A fingering indication of zero counts as an open string for fret
8 calculations.  An inappropriate request for an open string will generate
9 a warning message and set the requested pitch in the tablature.
10 "
11 }
12
13 mymusic = \relative {
14   \set minimumFret = #1
15   <d-0 d'-2 f-3 a-1>1
16   <f-0>
17 }
18
19 \score {
20   <<
21     \new Staff {
22       \clef "treble_8"
23       \mymusic
24     }
25     \new TabStaff {
26       \mymusic
27     }
28   >>
29 }