texlive[72504] Build/source/texk/web2c/mplibdir: Fixed a typo in the
commits+lscarso at tug.org
commits+lscarso at tug.org
Wed Oct 9 08:51:06 CEST 2024
Revision: 72504
https://tug.org/svn/texlive?view=revision&revision=72504
Author: lscarso
Date: 2024-10-09 08:51:05 +0200 (Wed, 09 Oct 2024)
Log Message:
-----------
Fixed a typo in the svg backend that was confusing the draw attributes.
Modified Paths:
--------------
trunk/Build/source/texk/web2c/mplibdir/ChangeLog
trunk/Build/source/texk/web2c/mplibdir/svgout.w
Modified: trunk/Build/source/texk/web2c/mplibdir/ChangeLog
===================================================================
--- trunk/Build/source/texk/web2c/mplibdir/ChangeLog 2024-10-08 23:41:54 UTC (rev 72503)
+++ trunk/Build/source/texk/web2c/mplibdir/ChangeLog 2024-10-09 06:51:05 UTC (rev 72504)
@@ -1,3 +1,8 @@
+2024-10-08 Luigi Scarso <luigi.scarso at gmail.com>
+ * Fixed a typo in the svg backend that was confusing the draw attributes --
+ see metapost ml Missing stroke-linejoin attribute in SVG output for filldraw command
+ (thanks to joshua at kraemer.link).
+
2024-05-19 Luigi Scarso <luigi.scarso at gmail.com>
* Sync with https://github.com/ascherer/mplibdir commit c21f82c1990d1cdb86f51a00b5c81d0088e12454.
Modified: trunk/Build/source/texk/web2c/mplibdir/svgout.w
===================================================================
--- trunk/Build/source/texk/web2c/mplibdir/svgout.w 2024-10-08 23:41:54 UTC (rev 72503)
+++ trunk/Build/source/texk/web2c/mplibdir/svgout.w 2024-10-09 06:51:05 UTC (rev 72504)
@@ -1098,7 +1098,7 @@
}
append_char(';');
}
-
+ }
if (gr_ljoin_val((mp_stroked_object *)h)!=0) {
append_string ("stroke-linejoin: ");
switch (gr_ljoin_val((mp_stroked_object *)h)) {
@@ -1114,8 +1114,8 @@
mp_svg_store_double(mp, gr_miterlim_val((mp_stroked_object *)h));
append_char(';');
}
- }
+
append_string("fill: ");
if (fill_also) {
mp_svg_color_out(mp,h);
More information about the tex-live-commits
mailing list.