]> git.donarmstrong.com Git - lilypond.git/blobdiff - input/regression/identifier-following-chordmode.ly
Issue 5167/6: Changes: show \markup xxx = ... \etc assignments
[lilypond.git] / input / regression / identifier-following-chordmode.ly
index c635af173756adaaae2f3724b13ff205429e1cd2..b99142a0c08f0d986a5c2fef8957bad9694fc235 100644 (file)
@@ -2,21 +2,20 @@
 
   texidoc = "Identifiers following a chordmode section are not
 interpreted as chordmode tokens.  In the following snippet, the
-identifier `m' is not interpreted by the lexer as as a minor chord
+identifier `m' is not interpreted by the lexer as a minor chord
 modifier."
 
 }
 
-\version "2.11.55"
+\version "2.19.22"
 
 myDisplayMusic =
-#(define-music-function (parser location music)
+#(define-void-function (music)
  (ly:music?)
- (display-scheme-music music)
- (make-music 'SequentialMusic 'void #t))
+ (display-scheme-music music (current-error-port)))
 
 \myDisplayMusic \chordmode { c }
 
-m = \relative c' { c4 d e f }
+m = \relative { c'4 d e f }
 
 \new Staff { \m }