Re: Manipulate[] CreateDocument[] BUG ???
- To: mathgroup at smc.vnet.net
- Subject: [mg81378] Re: Manipulate[] CreateDocument[] BUG ???
- From: Szabolcs Horvát <szhorvat at gmail.com>
- Date: Fri, 21 Sep 2007 03:07:11 -0400 (EDT)
- References: <fct8vr$pu5$1@smc.vnet.net>
roby.nowak at gmail.com wrote:
>
> (* working example *)
> A := Module[{k},
> k = 1;
> Manipulate[
> k*s,
> {{s, 1}, 1, 10}
> ]
> ];
>
Manipulate has HoldAll (not HoldAllComplete), but it still behaves as if
it had HoldAllComplete. Why?
In[1]:=
a=5;
Manipulate[Evaluate[a]*i,{i,1,10,1}]//InputForm
Out[2]//InputForm=
Manipulate[Evaluate[a]*i, {i, 1, 10, 1}]
--
Szabolcs