summaryrefslogtreecommitdiff
path: root/Master/texmf-dist/tex/generic/pgf/modules
diff options
context:
space:
mode:
authorKarl Berry <karl@freefriends.org>2023-01-15 20:58:27 +0000
committerKarl Berry <karl@freefriends.org>2023-01-15 20:58:27 +0000
commit810d9b451473ebe8e27c3f691bf001e01864e6fb (patch)
tree5151b6e2e4cef114dd6f4154f2d602312c40f0cf /Master/texmf-dist/tex/generic/pgf/modules
parentbf5bd6f0c1fa2b7dac8b2b7b8d4b52bf6a1518f0 (diff)
pgf (15jan23)
git-svn-id: svn://tug.org/texlive/trunk@65553 c570f23f-e606-0410-a88d-b1316a301751
Diffstat (limited to 'Master/texmf-dist/tex/generic/pgf/modules')
-rw-r--r--Master/texmf-dist/tex/generic/pgf/modules/pgfmoduleanimations.code.tex2
-rw-r--r--Master/texmf-dist/tex/generic/pgf/modules/pgfmoduledatavisualization.code.tex1
-rw-r--r--Master/texmf-dist/tex/generic/pgf/modules/pgfmoduledecorations.code.tex12
-rw-r--r--Master/texmf-dist/tex/generic/pgf/modules/pgfmodulematrix.code.tex2
-rw-r--r--Master/texmf-dist/tex/generic/pgf/modules/pgfmoduleshapes.code.tex4
5 files changed, 11 insertions, 10 deletions
diff --git a/Master/texmf-dist/tex/generic/pgf/modules/pgfmoduleanimations.code.tex b/Master/texmf-dist/tex/generic/pgf/modules/pgfmoduleanimations.code.tex
index 5384b1a71b2..c0a83468112 100644
--- a/Master/texmf-dist/tex/generic/pgf/modules/pgfmoduleanimations.code.tex
+++ b/Master/texmf-dist/tex/generic/pgf/modules/pgfmoduleanimations.code.tex
@@ -648,7 +648,7 @@
\def\pgf@anim@protocol@path@size{%
- \pgfutil@ifnextchar\pgf@stop\relax\pgf@anim@protocol@path@size@%
+ \pgfutil@ifnextchar\pgf@stop\pgfutil@gobble\pgf@anim@protocol@path@size@%
}%
\def\pgf@anim@protocol@path@size@#1#2#3{%
\pgf@protocolanimsizes@direct{#2}{#3}%
diff --git a/Master/texmf-dist/tex/generic/pgf/modules/pgfmoduledatavisualization.code.tex b/Master/texmf-dist/tex/generic/pgf/modules/pgfmoduledatavisualization.code.tex
index f60764d0be3..96686aa73f3 100644
--- a/Master/texmf-dist/tex/generic/pgf/modules/pgfmoduledatavisualization.code.tex
+++ b/Master/texmf-dist/tex/generic/pgf/modules/pgfmoduledatavisualization.code.tex
@@ -721,6 +721,7 @@
\def\pgf@partext{\par}%
\def\pgf@datagroup@readline{%
+ \endlinechar=-1 % suppress white space at end; this is local to `\pgfdata`
\immediate\read\r@pgf@reada to \pgf@temp%
\ifx\pgf@temp\pgf@partext%
\pgf@dv@format@emptyline%
diff --git a/Master/texmf-dist/tex/generic/pgf/modules/pgfmoduledecorations.code.tex b/Master/texmf-dist/tex/generic/pgf/modules/pgfmoduledecorations.code.tex
index f7cdd13457a..c119dd622f5 100644
--- a/Master/texmf-dist/tex/generic/pgf/modules/pgfmoduledecorations.code.tex
+++ b/Master/texmf-dist/tex/generic/pgf/modules/pgfmoduledecorations.code.tex
@@ -56,7 +56,7 @@
aspect/.code={\pgfmathparse{#1}\let\pgfdecorationsegmentaspect\pgfmathresult},
start radius/.initial=2.5pt,
end radius/.initial=2.5pt,
- radius/.style={start radius=#1,end radius=#1},
+ radius/.style={start radius={#1},end radius={#1}},
path has corners/.is if=pgfdecoratepathhascorners,
reverse path/.is if=pgf@decorate@inputsegmentobjects@reverse,
}%
@@ -2180,11 +2180,11 @@
\def\pgfsnakesegmentaspect{\pgfdecorationsegmentaspect}%
\pgfset{%
- /pgf/segment amplitude/.style={/pgf/decoration={amplitude=#1,shape height=2*#1}},
- /pgf/segment length/.style={/pgf/decoration={segment length=#1}},
- /pgf/segment angle/.style={/pgf/decoration={angle=#1}},
- /pgf/segment aspect/.style={/pgf/decoration={aspect=#1}},
- /pgf/segment object length/.style={/pgf/decoration={shape width=#1,radius=#1}}}%
+ /pgf/segment amplitude/.style={/pgf/decoration={amplitude={#1},shape height={2*(#1)}}},
+ /pgf/segment length/.style={/pgf/decoration={segment length={#1}}},
+ /pgf/segment angle/.style={/pgf/decoration={angle={#1}}},
+ /pgf/segment aspect/.style={/pgf/decoration={aspect={#1}}},
+ /pgf/segment object length/.style={/pgf/decoration={shape width={#1},radius={#1}}}}%
diff --git a/Master/texmf-dist/tex/generic/pgf/modules/pgfmodulematrix.code.tex b/Master/texmf-dist/tex/generic/pgf/modules/pgfmodulematrix.code.tex
index 01f6feee976..166eb470938 100644
--- a/Master/texmf-dist/tex/generic/pgf/modules/pgfmodulematrix.code.tex
+++ b/Master/texmf-dist/tex/generic/pgf/modules/pgfmodulematrix.code.tex
@@ -288,7 +288,7 @@
\def\pgf@matrix@addtolength#1#2{\edef\pgf@temp{#2}\expandafter\pgf@matrix@addtolength@\expandafter#1#2,\pgf@stop}%
\def\pgf@matrix@addtolength@#1#2,#3\pgf@stop{%
- \def\pgf@temp{#2}%
+ \pgfkeys@spdef\pgf@temp{#2}%
\ifx\pgf@temp\pgfutil@empty%
\else%
\ifx\pgf@temp\pgf@matrix@fixed@text%
diff --git a/Master/texmf-dist/tex/generic/pgf/modules/pgfmoduleshapes.code.tex b/Master/texmf-dist/tex/generic/pgf/modules/pgfmoduleshapes.code.tex
index efef54af7ad..6be10d1464d 100644
--- a/Master/texmf-dist/tex/generic/pgf/modules/pgfmoduleshapes.code.tex
+++ b/Master/texmf-dist/tex/generic/pgf/modules/pgfmoduleshapes.code.tex
@@ -887,13 +887,13 @@
\pgfset{
inner xsep/.initial =.3333em,
inner ysep/.initial =.3333em,
- inner sep/.style ={/pgf/inner xsep=#1,/pgf/inner ysep=#1},
+ inner sep/.style ={/pgf/inner xsep={#1},/pgf/inner ysep={#1}},
outer xsep/.initial =.5\pgflinewidth,
outer ysep/.initial =.5\pgflinewidth,
outer sep/.code =\pgf@handle@outer@sep{#1},
minimum width/.initial =1pt,
minimum height/.initial =1pt,
- minimum size/.style ={/pgf/minimum width=#1,/pgf/minimum height=#1},
+ minimum size/.style ={/pgf/minimum width={#1},/pgf/minimum height={#1}},
}%