]> git.donarmstrong.com Git - lilypond.git/blobdiff - input/regression/identifier-following-chordmode.ly
Run scripts/auxiliar/update-with-convert-ly.sh
[lilypond.git] / input / regression / identifier-following-chordmode.ly
index c635af173756adaaae2f3724b13ff205429e1cd2..1815c55b76f93ed21b594ca7eeb0f1b4a226ddf5 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.21"
 
 myDisplayMusic =
-#(define-music-function (parser location music)
+#(define-void-function (parser location 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 }