]> git.donarmstrong.com Git - lilypond.git/blobdiff - input/regression/multi-measure-rest-instr-name.ly
Fix some bugs in the dynamic engraver and PostScript backend
[lilypond.git] / input / regression / multi-measure-rest-instr-name.ly
index 1236e9d84ecb6f8669e63390cdbb3a1e8169dfad..49c37b1bfa02d3fa451e8f21eed349918655d7ae 100644 (file)
@@ -1,20 +1,24 @@
-\version "1.9.0"
-\header { texidoc = "This combines instrument names and multimeasure rests (there was an
-interesting bug in 1.3.98). " }
+\version "2.7.39"
+\header {
 
-\score{
-       \context Staff <
-             \property Staff.instrument = "instrument"
-             \property Staff.instr = "instr"
-             \notes{c''1 \break R1 }
-           >
-        \paper {
-           \translator { \StaffContext
-           \consists Instrument_name_engraver
+  texidoc = "There are both long and short instrument names.
+Engraving instrument names should not be confused by the
+multimeasure rests. "
 
-           }
-         }
-       \paper { raggedright =  ##t }
-       }
+}
 
+\layout {
+  ragged-right = ##t
+  \context {
+    \Staff
+    \consists Instrument_name_engraver
 
+  }
+}
+
+
+\context Staff <<
+  \set Staff.instrument = "instrument"
+  \set Staff.instr = "instr"
+  {c''1 \break R1 }
+>>