MIDI: fix regtest failure
[lilypond/patrick.git] / input / regression / newaddlyrics-music-identifiers.ly
blob61b91efa69f35c597e0d5b62f6a1d3222d5857ce
1 \version "2.13.38"
3 \header {
4 texidoc = "addlyrics do not need braces around their arguments,
5 in particular if the arguments are variables."
8 m = \relative c' { c4 d }
9 l = \lyricmode { A B }
11 % addlyrics takes music expressions as well as music identifiers. The following
12 % two staves should produce the same output:
13 \new Staff { {\m} \addlyrics {\l} }
14 \new Staff { \m \addlyrics \l }