Fixes Issue 1504, allowing feather beam line breaking.
[lilypond/patrick.git] / input / regression / identifier-following-chordmode.ly
blob835f34abf0a1f4bdeea7f2e26ad87cc60b18d299
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 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 }