]> git.donarmstrong.com Git - lilypond.git/commitdiff
vert. spacing: Convert affected regtests, clean up.
authorMark Polesky <markpolesky@yahoo.com>
Sat, 13 Nov 2010 01:18:13 +0000 (17:18 -0800)
committerMark Polesky <markpolesky@yahoo.com>
Sat, 13 Nov 2010 01:18:13 +0000 (17:18 -0800)
input/regression/page-breaking-min-distance2.ly
input/regression/page-spacing-loose-lines-after.ly
input/regression/page-spacing-loose-lines-before.ly
input/regression/page-spacing-loose-lines-non-affinity.ly
input/regression/page-spacing-staff-group-hara-kiri.ly
input/regression/page-spacing-stretchability.ly

index d194f68f7831c41817c13fff1ef79423492b8c50..4634fbe2b86880fbdc088c0fbd7f667b87cdd841 100644 (file)
@@ -1,4 +1,4 @@
-\version "2.13.37"
+\version "2.13.39"
 
 \header {
   texidoc = "minimum-distance within a system is correctly accounted for in page breaking."
@@ -7,7 +7,9 @@
 \layout {
   \context {
     \Score
-    \override VerticalAxisGroup #'next-staff-spacing = #'((space . 20) (stretchability . 0))
+    \override VerticalAxisGroup #'staff-staff-spacing =
+      #'((space . 20)
+         (stretchability . 0))
   }
 }
 
index 65bd242c3d15a5e60d2290f6aced29303d83ca34..4bb87cd7fff8827e5246b623d4bdb1147d05ffbb 100644 (file)
@@ -1,4 +1,4 @@
-\version "2.13.4"
+\version "2.13.39"
 
 \header {
     texidoc = "A loose line (eg. a lyric line) at the bottom of a system
@@ -9,7 +9,7 @@ gets spaced appropriately."
   ragged-right = ##t
   \context {
     \Lyrics
-    \override VerticalAxisGroup #'inter-loose-line-spacing #'space = #20
+    \override VerticalAxisGroup #'nonstaff-nonstaff-spacing #'space = #20
   }
 }
 <<
index 66cfb814a8c2f782fce65b5fcb6248e5d9c2d129..7f30ac4529c5302af2e30e1cab2cd268fdfe9dfe 100644 (file)
@@ -1,4 +1,4 @@
-\version "2.13.4"
+\version "2.13.39"
 
 \header {
     texidoc = "A loose line (eg. a lyric line) at the top of a system
@@ -9,7 +9,8 @@ is spaced appropriately."
   ragged-right = ##t
   \context {
     \Lyrics
-    \override VerticalAxisGroup #'inter-loose-line-spacing #'minimum-distance = #20
+    \override VerticalAxisGroup
+      #'nonstaff-nonstaff-spacing #'minimum-distance = #20
     \override VerticalAxisGroup #'staff-affinity = #DOWN
   }
 }
index 095080d6c0a0ce6f8cfec74453363d29dd5ac81a..2087cab7cad16432a5dbdb3def89d64125c1fd5f 100644 (file)
@@ -1,4 +1,4 @@
-\version "2.13.4"
+\version "2.13.39"
 
 \header {
   texidoc = "Loose lines can specify their padding or min-distance to the
@@ -7,7 +7,9 @@ staff for which they don't have affinity."
 
 <<
   \new Staff { c'1 }
-  \new Lyrics \with { \override VerticalAxisGroup #'non-affinity-spacing #'padding = #'20 }
-    \lyricmode { foo }
+  \new Lyrics \with {
+    \override VerticalAxisGroup
+      #'nonstaff-unrelatedstaff-spacing #'padding = #'20
+  } \lyricmode { foo }
   \new Staff { c'1 }
->>
\ No newline at end of file
+>>
index c89e123eda6a825f43a261fe31cd42735da05fd1..940e3ace8c87d2aa4026a840cd3d336bafe87738 100644 (file)
@@ -1,4 +1,4 @@
-\version "2.13.23"
+\version "2.13.39"
 
 \header {
   texidoc = "StaffGrouper interacts correctly with \RemoveEmptyStaffContext.
@@ -18,7 +18,7 @@ In both systems, there should be a large space between the staff groups."
 \score {
   <<
     \new StaffGroup = "G1" \with {
-      \override StaffGrouper #'after-last-staff-spacing #'space = #20
+      \override StaffGrouper #'staffgroup-staff-spacing #'space = #20
     }
     <<
       \new Staff { c'1 \break c'1 \break R1 }
@@ -26,4 +26,4 @@ In both systems, there should be a large space between the staff groups."
     >>
     \new Staff { c'1 c'1 c'1 }
   >>
-}
\ No newline at end of file
+}
index 563a12b426c50ca456a87389da8bfd0f9d45284f..0129c92e0c89e3fe882d374aee16db7a04ce880d 100644 (file)
@@ -1,4 +1,4 @@
-\version "2.13.2"
+\version "2.13.39"
 
 #(set-default-paper-size "a6")
 
@@ -11,9 +11,11 @@ between staves."
   }
 
   <<
-    \new Staff {c'1 \pageBreak c'1}
-    \new Staff \with { \override VerticalAxisGroup #'default-next-staff-spacing #'stretchability = #50 } {c'1 c'1}
-    
-    \new Staff {c'1 c'1}
+    \new Staff { c'1 \pageBreak c'1 }
+    \new Staff \with {
+      \override VerticalAxisGroup
+        #'default-staff-staff-spacing #'stretchability = #50
+    } { c'1 c'1 }
+    \new Staff { c'1 c'1 }
   >>
-}
\ No newline at end of file
+}