summaryrefslogtreecommitdiff
path: root/Master/texmf-dist/asymptote/slide.asy
diff options
context:
space:
mode:
Diffstat (limited to 'Master/texmf-dist/asymptote/slide.asy')
-rw-r--r--Master/texmf-dist/asymptote/slide.asy3
1 files changed, 3 insertions, 0 deletions
diff --git a/Master/texmf-dist/asymptote/slide.asy b/Master/texmf-dist/asymptote/slide.asy
index 0a3e0f65fab..433426c2f37 100644
--- a/Master/texmf-dist/asymptote/slide.asy
+++ b/Master/texmf-dist/asymptote/slide.asy
@@ -432,10 +432,13 @@ void indexedfigure(string prefix, int first, int last,
pair align=S, pen p=itempen, pen figuremattpen=figuremattpen,
bool step=itemstep)
{
+ bool Stepping=stepping;
+ stepping=true;
string[] s;
for(int i=first; i <= last; ++i)
s.push(prefix+string(i));
multifigure(s,options,caption,align,p,figuremattpen,step=step);
+ stepping=Stepping;
}
string[] codefile;