]> git.donarmstrong.com Git - lilypond.git/blobdiff - input/no-notation/recording.ly
Merge branch 'jneeman' of git+ssh://jneem@git.sv.gnu.org/srv/git/lilypond into jneeman
[lilypond.git] / input / no-notation / recording.ly
index 2ccb66f51afe1d60e4eb23e89b3811794001ef19..39ea07dfa32f0ba96e7a8c3fd7476f14597eaf87 100644 (file)
@@ -1,4 +1,4 @@
-\version "2.1.2"
+\version "2.10.0"
 \header {
 
 texidoc = "The @code{Recording_group_engraver} will record events
@@ -7,16 +7,15 @@ how to skip the rendering and outputting step of the process, using
 @code{ly:run-translator}."
 
 }
-\include "english.ly"
 
-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 {
-   \ThreadContext
+listener = \layout {
+ \context {
+   \Voice
    \type "Recording_group_engraver"
    recordEventSequence = #notice-the-events
  }