]> git.donarmstrong.com Git - lilypond.git/blobdiff - input/regression/bar-scripts.ly
Issue 5167/6: Changes: show \markup xxx = ... \etc assignments
[lilypond.git] / input / regression / bar-scripts.ly
index 644550de3f8f88af9056c38616633a81304fefd0..540e761786c7ca4296a5905bac3050edfeae411e 100644 (file)
@@ -1,41 +1,20 @@
+\version "2.16.0"
 \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.
-";
-}
-
-\version "1.3.117";
 
-onestaff =  \context Staff = foo\notes  {
-       \property Staff.instr = instr
-       \property Staff.instrument = instrument \mark "B";
-        c1 \mark "A"; \break c2  c2 \break
+Markings can be attached to (invisible) barlines.
+"
 }
 
-grstaff =  \notes \context GrandStaff <
-       \context Staff = bar {
-
-       \property Staff.instr = instr
-       
-        \mark "B"; \break c1 \mark "A"; c2  }
-       \context Staff = bufl { c1 c2  }
->
-
-scpaper =  \paper {\translator {\OrchestralScoreContext}}
-stpaper =  \paper{ \translator {\BarNumberingStaffContext }}
-
-scscore =  \score { \grstaff \paper {
-\scpaper
-}}
+\layout { ragged-right = ##t }
 
+\relative c''
+\context GrandStaff <<
+       \new Staff {
 
-stscore =  \score { \onestaff \paper {
- \stpaper
-}}
+       \set Staff.shortInstrumentName = instr
+       
+        \mark "B" \break c1 \mark "A" c2  }
+       \new Staff { c1 c2  }
+>>
 
-%\score {\stscore}
-\score {\scscore
-\header { title = "bar scripts"; }
-}