summaryrefslogtreecommitdiff
path: root/Build/source/texk/web2c/mplibdir
diff options
context:
space:
mode:
authorLuigi Scarso <luigi.scarso@gmail.com>2022-11-04 17:03:25 +0000
committerLuigi Scarso <luigi.scarso@gmail.com>2022-11-04 17:03:25 +0000
commite956df312ddf2d03dcefa37f24ee64ed778fce4b (patch)
tree444018fc327ce5cb7d4838f9e5040061e4c66bbf /Build/source/texk/web2c/mplibdir
parentafae44b386a28d5cf0cad20b06c19b4b8650fc83 (diff)
Fixed the value of the clip-path attribute for the svg output.
git-svn-id: svn://tug.org/texlive/trunk@64923 c570f23f-e606-0410-a88d-b1316a301751
Diffstat (limited to 'Build/source/texk/web2c/mplibdir')
-rw-r--r--Build/source/texk/web2c/mplibdir/svgout.w2
1 files changed, 1 insertions, 1 deletions
diff --git a/Build/source/texk/web2c/mplibdir/svgout.w b/Build/source/texk/web2c/mplibdir/svgout.w
index 94801da5205..3c35d55933b 100644
--- a/Build/source/texk/web2c/mplibdir/svgout.w
+++ b/Build/source/texk/web2c/mplibdir/svgout.w
@@ -1190,7 +1190,7 @@ void mp_svg_clip_out (MP mp, mp_clip_object *p) {
append_string("url(#CLIP");
mp_svg_store_int(mp, mp->svg->clipid);
- append_string(");");
+ append_string(")");
mp_svg_attribute(mp, "clip-path", mp->svg->buf);
mp_svg_reset_buf(mp);