]> git.donarmstrong.com Git - lilypond.git/blob - input/regression/identifier-following-chordmode.ly
Imported Upstream version 2.16.0
[lilypond.git] / input / regression / identifier-following-chordmode.ly
1 \header {
2
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 a minor chord
6 modifier."
7
8 }
9
10 \version "2.16.0"
11
12 myDisplayMusic =
13 #(define-music-function (parser location music)
14  (ly:music?)
15  (display-scheme-music music (current-error-port))
16  (make-music 'SequentialMusic 'void #t))
17
18 \myDisplayMusic \chordmode { c }
19
20 m = \relative c' { c4 d e f }
21
22 \new Staff { \m }