From f75b03396be9bec91ece6c0fb1bffa6deb3bbd70 Mon Sep 17 00:00:00 2001
From: Jan Nieuwenhuizen <janneke@gnu.org>
Date: Mon, 30 Oct 2006 17:30:18 +0100
Subject: [PATCH] Fix and elaborate on input/test/vertical-extent.ly (Thanks
 Mats).

---
 input/test/vertical-extent.ly | 16 +++++++++++++---
 1 file changed, 13 insertions(+), 3 deletions(-)

diff --git a/input/test/vertical-extent.ly b/input/test/vertical-extent.ly
index a56738e0fa..1d8aa9d366 100644
--- a/input/test/vertical-extent.ly
+++ b/input/test/vertical-extent.ly
@@ -1,5 +1,7 @@
 \version "2.7.39"
 % TODO: huh?  what's this file about?  -gp
+% This file shows that Staffs can get a very deep or high; there is a lot
+% of room between the staffs. 
 
 \header { texidoc = "
 Vertical extents may increased by setting @code{\override VerticalAxisGroup #'minimum-Y-extent}, 
@@ -10,14 +12,22 @@ Vertical extents may increased by setting @code{\override VerticalAxisGroup #'mi
 \score {
     <<
     \new Staff {
-      \set Staff.VerticalAxisGroup = #'(-15.0 . 0.0)
+      \override Staff.VerticalAxisGroup #'Y-extent = #'(-15.0 . 0.0)
+      \clef alto
+      a1^"15-deep staff"
+    }
+    \new Staff {
+      \clef alto
+      b1
+    }
+    \new Staff {
       \clef alto
       c1
     }
     \new Staff {
-      \set Staff.VerticalAxisGroup = #'(-0.0 . 15.0)
       \clef alto
-      g1
+      \override Staff.VerticalAxisGroup #'Y-extent = #'(-0.0 . 10.0)
+      d1^"10-high staff"
     }
   >>
   \layout{
-- 
2.39.5