summaryrefslogtreecommitdiff
path: root/Master/texmf-dist/tex/generic/pgfplots/liststructure/pgfplotsarray.code.tex
diff options
context:
space:
mode:
Diffstat (limited to 'Master/texmf-dist/tex/generic/pgfplots/liststructure/pgfplotsarray.code.tex')
-rw-r--r--Master/texmf-dist/tex/generic/pgfplots/liststructure/pgfplotsarray.code.tex16
1 files changed, 8 insertions, 8 deletions
diff --git a/Master/texmf-dist/tex/generic/pgfplots/liststructure/pgfplotsarray.code.tex b/Master/texmf-dist/tex/generic/pgfplots/liststructure/pgfplotsarray.code.tex
index 16e4b539c02..77fc52b1115 100644
--- a/Master/texmf-dist/tex/generic/pgfplots/liststructure/pgfplotsarray.code.tex
+++ b/Master/texmf-dist/tex/generic/pgfplots/liststructure/pgfplotsarray.code.tex
@@ -56,7 +56,7 @@
\long\def\pgfplotsarraynew#1#2{%
\pgfplotsarraynewempty{#1}%
\long\def\pgfplotsarraynew@impl@rest{#2}%
- \loop
+ \pgfutil@loop
\ifx\pgfplotsarraynew@impl@rest\pgfutil@empty
\pgfplots@loop@CONTINUEfalse
\else
@@ -64,7 +64,7 @@
\fi
\ifpgfplots@loop@CONTINUE
\expandafter\pgfplotsarraynew@impl\pgfplotsarraynew@impl@rest\toarray#1\relax
- \repeat
+ \pgfutil@repeat
}
% helper macro for \pgfplotsarraynew
@@ -96,11 +96,11 @@
\pgfplotsarray@@let{#2@size}={#1@size}%
\pgfplotsarray@@getsizeto{#1}{\pgfplotsarray@TMP}%
\c@pgfplotsarray@tmp=0
- \loop
+ \pgfutil@loop
\ifnum\c@pgfplotsarray@tmp<\pgfplotsarray@TMP
\pgfplotsarray@@let{#2@\the\c@pgfplotsarray@tmp}={#1@\the\c@pgfplotsarray@tmp}%
\advance\c@pgfplotsarray@tmp by1
- \repeat
+ \pgfutil@repeat
}
@@ -179,24 +179,24 @@
\long\def\pgfplotsarrayforeach#1\as#2#3{%
\pgfplotsarray@@getsizeto{#1}{\pgfplotsarray@TMP}%
\c@pgfplotsarray@tmp=0\relax
- \loop
+ \pgfutil@loop
\ifnum\c@pgfplotsarray@tmp<\pgfplotsarray@TMP\relax
\begingroup
\expandafter\let\expandafter#2\expandafter=\csname\string#1@\the\c@pgfplotsarray@tmp\endcsname%
#3%
\endgroup
\advance\c@pgfplotsarray@tmp by1
- \repeat
+ \pgfutil@repeat
}
% The same but without groups around #3.
\long\def\pgfplotsarrayforeachungrouped#1\as#2#3{%
\pgfplotsarray@@getsizeto{#1}{\pgfplotsarray@TMP}%
\c@pgfplotsarray@tmp=0\relax
- \loop
+ \pgfutil@loop
\ifnum\c@pgfplotsarray@tmp<\pgfplotsarray@TMP\relax
\expandafter\let\expandafter#2\expandafter=\csname\string#1@\the\c@pgfplotsarray@tmp\endcsname%
#3%
\advance\c@pgfplotsarray@tmp by1
- \repeat
+ \pgfutil@repeat
}