summaryrefslogtreecommitdiff
path: root/Master/texmf-dist/asymptote/slide.asy
diff options
context:
space:
mode:
authorKarl Berry <karl@freefriends.org>2015-05-12 23:15:42 +0000
committerKarl Berry <karl@freefriends.org>2015-05-12 23:15:42 +0000
commit3e889cecea02516b3f73d6574c3791a45e02c50a (patch)
tree03c51e54634cd5344e0a9f1e96d20a35ffc61c0d /Master/texmf-dist/asymptote/slide.asy
parent064ff9e4245f101ee0f01334f3dcba961ba37422 (diff)
asymptote 2.33
git-svn-id: svn://tug.org/texlive/trunk@37365 c570f23f-e606-0410-a88d-b1316a301751
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;