]> git.donarmstrong.com Git - lilypond.git/blobdiff - input/regression/quote-cyclic.ly
Run scripts/auxiliar/update-with-convert-ly.sh
[lilypond.git] / input / regression / quote-cyclic.ly
index 380b767d75ee8920ede7ec61e4a89d100dfcfde4..afbf309bc000173af5299383ade299ea869a862a 100644 (file)
@@ -1,23 +1,17 @@
+\version "2.16.0"
 
 \header {
-
-    texidoc = "Two quoted voices may refer to each other. In this
+  texidoc = "Two quoted voices may refer to each other. In this
 example, there are notes with each full-bar rest."
-         
 }
-\version "2.3.22"
-A = \relative c' { c4 d e f | << R1            \\
-                                \quote "qB" 1 >> | }
-B = \relative c' { << R1            \\
-                     \quote "qA" 1 >> | f4 e d c | }
 
-\addquote "qA" \A
-\addquote "qB" \B
+A = \relative c' { c4 d e f | \cueDuring #"qB" #1 { R1 } | }
+B = \new Voice \relative c' { \cueDuring #"qA" #1 { R1 } | f4 e d c | }
 
-\layout { raggedright = ##t }
+\addQuote "qA" \A
+\addQuote "qB" \B
 
 <<
-    \context Staff = "A" \A
-    \context Staff = "B" \B
+  \new Staff \A
+  \new Staff \B
 >>