]> git.donarmstrong.com Git - lilypond.git/blob - input/regression/harp-pedals.ly
7d7e36c5af6ac79d0e1ce611e50f1bfb8f43f22b
[lilypond.git] / input / regression / harp-pedals.ly
1 \version "2.12.0"
2
3 #(ly:set-option 'warning-as-error #f)
4
5 \header {
6   texidoc = "Basic harp diagram functionality, including circled pedal boxes. 
7 The third diagram uses an empty string, the third contains invalid characters. 
8 Both cases will create warnings, but should still not fail with an error."
9 }
10
11 \relative c'' {
12   c1^\markup \harp-pedal #"^v-|vv-^"
13   % circled boxes:
14   c1^\markup \harp-pedal #"o^ovo-|vovo-o^"
15   % invalid pedal specifications, which still should be handled gracefully:
16   c1^\markup \harp-pedal #""
17   c1^\markup \harp-pedal #"asfdvx" %\break
18 }