]> git.donarmstrong.com Git - lilypond.git/blobdiff - input/regression/bar-scripts.ly
Fix some bugs in the dynamic engraver and PostScript backend
[lilypond.git] / input / regression / bar-scripts.ly
index 3c188c822b5be424122849c016b2752526cc01ff..37fcf6ddd2c20d33cc6c57f69fafe8cf31c60519 100644 (file)
@@ -1,43 +1,29 @@
-\version "1.5.68"
+\version "2.7.39"
 \header{
 texidoc="
-Markings that are attached to (invisible) barlines are 
-delicate: the are attached to the rest of the score without the score
-knowing it.  Consequently, they fall over  often.
+
+Markings can be attached to (invisible) barlines.
 "
 }
 
+\layout { ragged-right = ##t }
 
-
-onestaff =  \context Staff = foo\notes  {
-       \property Staff.instr = instr
-       \property Staff.instrument = instrument \mark "B"
+onestaff = \new Staff\relative c''  {
+       \set Staff.instr = instr
+       \set Staff.instrument = instrument \mark "B"
         c1 \mark "A" \break c2  c2 \break
 }
 
-grstaff =  \notes \context GrandStaff <
-       \context Staff = bar {
+grstaff =  \relative c''
+\context GrandStaff <<
+       \new Staff {
 
-       \property Staff.instr = instr
+       \set Staff.instr = instr
        
         \mark "B" \break c1 \mark "A" c2  }
-       \context Staff = bufl { c1 c2  }
->
-
-scpaper =  \paper {\translator {\OrchestralScoreContext}}
-% stpaper =  \paper{ \translator {\BarNumberingStaffContext }}
-stpaper =  \paper{ }
+       \new Staff { c1 c2  }
+>>
 
-scscore =  \score { \grstaff \paper {
-\scpaper
-}}
 
+\score {\grstaff}
 
-stscore =  \score { \onestaff \paper {
- \stpaper
-}}
-
-%\score {\stscore}
-\score {\scscore
-\header { title = "bar scripts" }
-}