]> git.donarmstrong.com Git - lilypond.git/blobdiff - input/regression/quote.ly
Remove several warnings in the regtests, add warning-as-error where needed
[lilypond.git] / input / regression / quote.ly
index 8738478a913e57df2c9bb8002397a76dd3e5e127..ee26fc453f24bd9d9c03e1d43ac69708096841b7 100644 (file)
@@ -3,39 +3,40 @@
 
     texidoc = "With @code{\\quote}, fragments of previously entered
 music may be quoted. @code{quotedEventTypes} will determines what
-things are quoted. In this example, a 16th rests is not quoted, since
+things are quoted. In this example, a 16th rest is not quoted, since
 @code{rest-event} is not in @code{quotedEventTypes}."
 
 }
-\version "2.4.0"
+\version "2.14.0"
 \layout {
-    raggedright = ##t
+    ragged-right = ##t
 }
 
 
-quoteMe = \relative c' { fis4 r16  a8.-> b4-\ff }
+quoteMe = \relative c' { fis4 r16  a8.-> b4-\ff }
 
-\addquote quoteMe \quoteMe 
+\addQuote quoteMe \quoteMe 
 original = \relative c'' { c8 d s2 es8 gis8 }
 
 <<
     \new Staff {
-       \set Staff.instrument = "quoteMe"
+       \set Staff.instrumentName = "quoteMe"
        \quoteMe
     }
     \new Staff {
-       \set Staff.instrument = "orig"
+       \set Staff.instrumentName = "orig"
        \original
     }
     \new Staff \relative c'' <<
-       \set Staff.instrument = "orig+quote"    
+       \set Staff.instrumentName = "orig+quote"        
        \set Staff.quotedEventTypes = #'(note-event articulation-event)
-       \original
-       \new Voice {
+       \new Voice {\voiceOne
+           \original }
+         \new Voice {\voiceTwo
            s4
            \set fontSize = #-4
-           \override Stem #'lengths = #'(2.5 2.5 3.0 3.0)
-           \quote quoteMe 2.
+           \override Stem #'length-fraction = #(magstep -4)
+           \quoteDuring #"quoteMe" { \skip 2. }
        }
     >>
 >>