]> git.donarmstrong.com Git - lilypond.git/commitdiff
fixes.
authorHan-Wen Nienhuys <hanwen@xs4all.nl>
Fri, 19 Sep 2003 12:11:24 +0000 (12:11 +0000)
committerHan-Wen Nienhuys <hanwen@xs4all.nl>
Fri, 19 Sep 2003 12:11:24 +0000 (12:11 +0000)
ChangeLog
input/test/text-spanner.ly
stepmake/stepmake/generic-targets.make

index 61bfaa6274806b9097ddcb3d8067cb1f703ff97d..b4e72dd795bb90c277775463f47d8202c0e29535 100644 (file)
--- 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
index e9e804d0a1a2376ce7619c7c482eadc6d733b9be..b1863808a60de88c59de1ce58e2988cba7c19fe3 100644 (file)
@@ -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}
index 806a125b2a7e46b3bb4fa46bee8b151ef58d714b..f24d3a0182595f10f731db1fcb778297093c7bd1 100644 (file)
@@ -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) \