Update .ly files.
[lilypond.git] / input / regression / identifier-following-chordmode.ly
blob34dec04102927628eedebd623fcbd4728a07aea9
1 \header {
3 texidoc = "Identifiers following a chordmode section are not
4 interpreted as chordmode tokens. In the following snippet, the
5 identifier `m' is not interpreted by the lexer as as a minor chord
6 modifier."
10 \version "2.12.0"
12 myDisplayMusic =
13 #(define-music-function (parser location music)
14 (ly:music?)
15 (display-scheme-music music)
16 (make-music 'SequentialMusic 'void #t))
18 \myDisplayMusic \chordmode { c }
20 m = \relative c' { c4 d e f }
22 \new Staff { \m }