]> git.donarmstrong.com Git - lilypond.git/blobdiff - input/regression/spacing-clef-first-note.ly
* lily/stem.cc (print): only produce stemlets if there are no
[lilypond.git] / input / regression / spacing-clef-first-note.ly
index 26162d801b57915457b35eb156ee4f87bc78bd35..c90c810247727101228387a551a4c566f8853cd2 100644 (file)
@@ -1,25 +1,28 @@
-\version "1.7.18"
+\version "2.4.0"
 \header {
 
-    texidoc = "clef changes at the start of a line get much more space
+    texidoc = "Clef changes at the start of a line get much more space
 than clef changes halfway the line."
 
 }
 
-\score  {\notes  {
-    < \context Staff = SA {
-       c'2
-       \clef bass e16 f a
-       \clef treble b
+\score  {  
+    <<
+       \new Staff {
+           c'2
+           \clef bass e16 f a
+           \clef treble b
+       }
+       \new Staff  {
+           c'4 c'4 c'4 
+       }
+    >>
+    \layout {
+       raggedright = ##t
+       \context {
+           \Staff
+           \remove Time_signature_engraver
        }
-      \context Staff = SB  {
-         c'4 c'4 c'4 
-      }>
     }
-    \paper { raggedright = ##t
-\translator { \StaffContext
-             TimeSignature = \turnOff
-        }
-
-     }}
+}