]> git.donarmstrong.com Git - lilypond.git/commitdiff
* mf/feta-pendaal.mf ("Pedal asterisk"): Remove workaround for
authorWerner Lemberg <wl@gnu.org>
Fri, 28 Jan 2005 07:48:47 +0000 (07:48 +0000)
committerWerner Lemberg <wl@gnu.org>
Fri, 28 Jan 2005 07:48:47 +0000 (07:48 +0000)
metapost bug.

* mf/feta-schrift.mf ("Trill (`tr')"): Remove redundant point in
path.
("Varied Coda"): Move some points to avoid fontforge warnings.  This
doesn't change the glyph shape.

ChangeLog
mf/feta-pendaal.mf
mf/feta-schrift.mf

index d128cba70ea09a8b710d2290e0694022b34156d0..866617ec6f58072912c8cf9104e09299614d5284 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,13 @@
+2005-01-28  Werner Lemberg  <wl@gnu.org>
+
+       * mf/feta-pendaal.mf ("Pedal asterisk"): Remove workaround for
+       metapost bug.
+
+       * mf/feta-schrift.mf ("Trill (`tr')"): Remove redundant point in
+       path.
+       ("Varied Coda"): Move some points to avoid fontforge warnings.  This
+       doesn't change the glyph shape.
+
 2005-01-27  Han-Wen Nienhuys  <hanwen@xs4all.nl>
 
        * lily/*.cc: Scheme deprecation of SCM_VECTOR_* 
@@ -16,7 +26,7 @@
        \voiceFoo does.  Also rewrote warning about marks at
        a line break.
 
-       * Docuementation/user/changing-defaults.itely: added info
+       * Documentation/user/changing-defaults.itely: added info
        about putting dynamics in parenthesis and brackets.
 
 2005-01-27  Werner Lemberg  <wl@gnu.org>
index c4e4865dfd51e51a1342773fdeaff34b1e4ae7cd..c7aa08addcc5477e4e203815af1b74dda7ed644d 100644 (file)
@@ -78,19 +78,7 @@ fet_beginchar ("Pedal asterisk", "*");
 
        pat := pat
               .. cycle;
-
-       % Uh, oh, there is a bug in metapost 0.641 which makes mf2pt1.mp's
-       % redefinion of `fill' fail for this particular path, using a
-       % wrong path orientation.
-       %
-       % Note that using `unfill' here makes the direct mpost output
-       % wrong, but the `mf2pt1' script fixes it for the Type 1 output.
-
-       if known bp_per_pixel:
-               unfill pat;
-       else:
-               fill pat;
-       fi;
+       fill pat;
 
        pickup pencircle scaled (7/8 inner_r);
 
index 16a3eefca41038f5dd3368bf397e523392a54043..30945bd06f013f91d59bd376a509ecdd2da37df8 100644 (file)
@@ -822,7 +822,6 @@ fet_beginchar ("Trill (`tr')", "trill");
             .. z4r{down}
             .. z3r{left}
             ..tension (1.5 + .7 slant).. z2r{up}
-            .. z1r
             -- cycle;
 
        z5' = point 1.1 of krul_p;
@@ -1155,15 +1154,15 @@ fet_beginchar ("Varied Coda", "varcoda");
        set_char_box (codawidth# + thick#, codawidth# + thick#,
                      codaheight# + thick#, codaheight# + thick#);
 
-       x1 = -codawidth;
+       x1 = -codawidth + .5 thick;
        y1 = y2 - thin;
-       x2 = codawidth;
+       x2 = codawidth - .5 thick;
        y2 = codaheight;
        draw_block (z1, z2);
 
-       x3 = x1;
+       x3 = -codawidth;
        y3 = -codaheight;
-       x4 = x1 + thick;
+       x4 = x3 + thick;
        y4 = y2;
        draw_block (z3, z4);