]> git.donarmstrong.com Git - lilypond.git/blobdiff - input/no-notation/recording.ly
Fix off-by-one error in constrained-breaking.
[lilypond.git] / input / no-notation / recording.ly
index 9b96a992fa7f387066949f76aad750ac2b4a9aec..39ea07dfa32f0ba96e7a8c3fd7476f14597eaf87 100644 (file)
@@ -1,4 +1,4 @@
-\version "2.1.23"
+\version "2.10.0"
 \header {
 
 texidoc = "The @code{Recording_group_engraver} will record events
@@ -8,14 +8,14 @@ how to skip the rendering and outputting step of the process, using
 
 }
 
-theMusic = \context Staff \notes { c4 d8-. }
+theMusic = \context Staff  { c4 d8-. }
 
 #(define (notice-the-events context lst)
   (map (lambda (x) (display x) (newline))  lst))
 
-listener = \paper {
- \translator {
-   \VoiceContext
+listener = \layout {
+ \context {
+   \Voice
    \type "Recording_group_engraver"
    recordEventSequence = #notice-the-events
  }