1\header {
2
3  texidoc = "Identifiers following a chordmode section are not
4interpreted as chordmode tokens.  In the following snippet, the
5identifier `m' is not interpreted by the lexer as a minor chord
6modifier."
7
8}
9
10\version "2.19.22"
11
12myDisplayMusic =
13#(define-void-function (music)
14 (ly:music?)
15 (display-scheme-music music (current-error-port)))
16
17\myDisplayMusic \chordmode { c }
18
19m = \relative { c'4 d e f }
20
21\new Staff { \m }
22