From: Han-Wen Nienhuys Date: Fri, 12 Sep 2003 21:06:28 +0000 (+0000) Subject: (texidoc): demo 15ma too. X-Git-Tag: release/1.9.6~17 X-Git-Url: https://git.donarmstrong.com/?a=commitdiff_plain;h=e9844cdc55f2add6649b3ee7e4afd2e40eacb769;p=lilypond.git (texidoc): demo 15ma too. --- diff --git a/ChangeLog b/ChangeLog index be2b2f2d19..68428c7c6c 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,5 +1,9 @@ 2003-09-12 Han-Wen Nienhuys + * input/regression/ottava.ly (texidoc): demo 15ma too. + + * GNUmakefile.in ($(outdir)/VERSION): add VERSION target + * input/mutopia/J.S.Bach/baerenreiter-sarabande.ly (sarabandeA): octave fixes. diff --git a/input/regression/ottava.ly b/input/regression/ottava.ly index 0a32a084ec..9d8a46e866 100644 --- a/input/regression/ottava.ly +++ b/input/regression/ottava.ly @@ -13,11 +13,12 @@ use of the scheme function @code{set-octavation}. \score { \notes\relative c''' \notes { a b c a - #(set-octavation 1) - a b c a + #(set-octavation 2) + a' b + c a #(set-octavation 0) - a #(set-octavation 1) b + a, #(set-octavation 1) b #(set-octavation 0) c a } diff --git a/scripts/convert-ly.py b/scripts/convert-ly.py index d30bf71a5b..3b074dd7b2 100644 --- a/scripts/convert-ly.py +++ b/scripts/convert-ly.py @@ -1285,6 +1285,14 @@ if 1: last_str = '' while last_str <> str: last_str = str + def sub_tremolos (m): + tr = m.group (2) + if tr not in slur_strs: + slur_strs.append (tr) + return m.group (1) + + str = re.sub (r"([a-z]+[',!? ]*)(:[0-9]+)", sub_tremolos, str) + def sub_dyn_end (m): dyns.append (' \!') return ' ' + m.group(2)