From f6412047945334484415a90c212c8f46e4bfb333 Mon Sep 17 00:00:00 2001
From: hanwen <hanwen>
Date: Fri, 19 Sep 2003 12:11:24 +0000
Subject: [PATCH] fixes.

---
 ChangeLog                              |  4 ++++
 input/test/text-spanner.ly             | 25 +++++++++++++------------
 stepmake/stepmake/generic-targets.make |  2 +-
 3 files changed, 18 insertions(+), 13 deletions(-)

diff --git a/ChangeLog b/ChangeLog
index 61bfaa6274..b4e72dd795 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,7 @@
+2003-09-19  Han-Wen Nienhuys  <hanwen@cs.uu.nl>
+
+	* input/test/text-spanner.ly: fixes.
+
 2003-09-19  Heikki Junes  <hjunes@cc.hut.fi>
 
 	* buildscripts/lilypond.words.py: add drum names as note names to
diff --git a/input/test/text-spanner.ly b/input/test/text-spanner.ly
index e9e804d0a1..b1863808a6 100644
--- a/input/test/text-spanner.ly
+++ b/input/test/text-spanner.ly
@@ -2,38 +2,39 @@
 \version "1.9.7"
 % TODO: check about other ottava functions.
 
-\header { texidoc = "@cindex Ottava Spanner
-You can make LilyPond print ottava spanners. "
+\header { texidoc = "@cindex text spanner
+You can make LilyPond print text spanners. "
 }
 
 \score{
     \notes\relative c''{
-        \property Voice.TextSpanner \override #'edge-text = #'("8 " . "")
-        a #(ly:export (make-span-event 'TextSpanEvent START))
+        \property Voice.TextSpanner \override #'edge-text = #'("bla" . "blu")
+        a \startTextSpan
 	b c 
-        a #(ly:export (make-span-event 'TextSpanEvent STOP))
+        a \stopTextSpan
 
         \property Voice.TextSpanner \revert #'style
         \property Voice.TextSpanner \override #'style = #'dotted-line
-        a #(ly:export (make-span-event 'TextSpanEvent START))
+        a \startTextSpan
 	b c 
-        a #(ly:export (make-span-event 'TextSpanEvent STOP))
+        a \stopTextSpan
 
         \property Voice.TextSpanner \revert #'style
         \property Voice.TextSpanner \override #'style = #'dashed-line
         \property Voice.TextSpanner \override #'edge-height = #'(1 . -2)
-        a #(ly:export (make-span-event 'TextSpanEvent START))
+        a \startTextSpan
 	b c 
-        a #(ly:export (make-span-event 'TextSpanEvent STOP))
+        a \stopTextSpan
 
 
         \property Staff.centralCPosition = #-13
 
-        \property Voice.TextSpanner \override #'dash-length = #5
+        \property Voice.TextSpanner \override #'dash-period = #10
+        \property Voice.TextSpanner \override #'dash-fraction = #.5
         \property Voice.TextSpanner \override #'thickness = #10
-        a #(ly:export (make-span-event 'TextSpanEvent START))
+        a \startTextSpan
 	b c 
-        a #(ly:export (make-span-event 'TextSpanEvent STOP))
+        a \stopTextSpan
         \property Staff.centralCPosition = #-6	
     }
 	\paper{ raggedright = ##t}
diff --git a/stepmake/stepmake/generic-targets.make b/stepmake/stepmake/generic-targets.make
index 806a125b2a..f24d3a0182 100644
--- a/stepmake/stepmake/generic-targets.make
+++ b/stepmake/stepmake/generic-targets.make
@@ -95,7 +95,7 @@ TAGS:
 
 	$(LOOP)
 
-$(outdir)/version.hh: $(config_make)
+$(outdir)/version.hh: $(config_make) $(depth)/VERSION
 	$(PYTHON) $(step-bindir)/make-version.py PACKAGE_NAME=$(PACKAGE_NAME) \
 		MAJOR_VERSION=$(MAJOR_VERSION) \
 		MINOR_VERSION=$(MINOR_VERSION) \
-- 
2.39.5