]> git.donarmstrong.com Git - lilypond.git/blob - input/regression/identifier-following-chordmode.ly
Imported Upstream version 2.19.45
[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.19.22"
11
12 myDisplayMusic =
13 #(define-void-function (music)
14  (ly:music?)
15  (display-scheme-music music (current-error-port)))
16
17 \myDisplayMusic \chordmode { c }
18
19 m = \relative { c'4 d e f }
20
21 \new Staff { \m }