From: Jan Nieuwenhuizen Date: Mon, 24 Feb 2003 10:43:02 +0000 (+0000) Subject: * ly/spanners-init.ly (cresc, dim): Update to new markup text. X-Git-Tag: release/1.7.14~22 X-Git-Url: https://git.donarmstrong.com/?a=commitdiff_plain;h=e03e2e05e929d26f6a23f5eb5d4f27a694f90e1e;p=lilypond.git * ly/spanners-init.ly (cresc, dim): Update to new markup text. * lily/parser.yy (new_chord): Compile fix. --- diff --git a/ChangeLog b/ChangeLog index 255c396442..908d410655 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,9 @@ +2003-02-24 Jan Nieuwenhuizen + + * ly/spanners-init.ly (cresc, dim): Update to new markup text. + + * lily/parser.yy (new_chord): Compile fix. + 2003-02-23 Han-Wen Nienhuys * lily/percent-repeat-engraver.cc (try_music): add correct @@ -18,9 +24,11 @@ * 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. diff --git a/lily/parser.yy b/lily/parser.yy index ec86f94ed2..0d346aed0c 100644 --- a/lily/parser.yy +++ b/lily/parser.yy @@ -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); diff --git a/ly/spanners-init.ly b/ly/spanners-init.ly index 60ad14adee..d1d096e732 100644 --- a/ly/spanners-init.ly +++ b/ly/spanners-init.ly @@ -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 }