]> git.donarmstrong.com Git - lilypond.git/commitdiff
* ly/spanners-init.ly (cresc, dim): Update to new markup text.
authorJan Nieuwenhuizen <janneke@gnu.org>
Mon, 24 Feb 2003 10:43:02 +0000 (10:43 +0000)
committerJan Nieuwenhuizen <janneke@gnu.org>
Mon, 24 Feb 2003 10:43:02 +0000 (10:43 +0000)
* lily/parser.yy (new_chord): Compile fix.

ChangeLog
lily/parser.yy
ly/spanners-init.ly

index 255c3964421c3071b5e6a5a63b4e221e6fad6b1d..908d4106558c1d13a3412f58c965ecec3b4b516c 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,9 @@
+2003-02-24  Jan Nieuwenhuizen  <janneke@gnu.org>
+
+       * ly/spanners-init.ly (cresc, dim): Update to new markup text.
+
+       * lily/parser.yy (new_chord): Compile fix.
+
 2003-02-23  Han-Wen Nienhuys  <hanwen@cs.uu.nl>
 
        * lily/percent-repeat-engraver.cc (try_music): add correct
        * input/test/*: lots of cleanups/comment-outs/removals in chord
        examples
        
-       * input/regression/*: lots of cleanups/comment-outs/removals in chord examples
+       * input/regression/*: lots of cleanups/comment-outs/removals in
+       chord examples
        
-       * scripts/lilypond-book.py (check_texidoc): add no-texidoc to options
+       * scripts/lilypond-book.py (check_texidoc): add no-texidoc to
+       options
 
        * lily/new-chord-name-engraver.cc (process_music): give original
        inversion pitch to chord name routine.
index ec86f94ed21ae96d07cd9f7c4f049a5d8988a7f2..0d346aed0c3f26fa3dc2a3c56b54109171411563 100644 (file)
@@ -1992,7 +1992,7 @@ simple_element:
 
 new_chord:
        steno_tonic_pitch optional_notemode_duration   {
-               $$ = make_chord ($1, $2, SCM_EOL)
+               $$ = make_chord ($1, $2, SCM_EOL);
        }
        | steno_tonic_pitch optional_notemode_duration chord_separator chord_items {
                SCM its = scm_reverse_x ($4, SCM_EOL);
index 60ad14adeece100e2576ed57649df2dce36e4883..d1d096e73236bd877832571250bc1cd3e4b509eb 100644 (file)
@@ -18,7 +18,7 @@ stopTextSpan = #(make-span-event 'TextSpanEvent STOP)
 
 cresc = \notes {
   #(ly:export (make-event-chord (list cr)))
-  \property Voice.crescendoText = #'((font-shape . italic) "cresc.")
+  \property Voice.crescendoText = \markup { \italic "cresc." }
   \property Voice.crescendoSpanner = #'dashed-line
 }
 
@@ -33,7 +33,7 @@ endcresc = \notes {
 dim = \notes {
   #(ly:export (make-event-chord (list decr)))
 
-  \property Voice.decrescendoText = #"dim."
+  \property Voice.decrescendoText = \markup { \italic "dim." }
   \property Voice.decrescendoSpanner = #'dashed-line
 }