Skip to content
Prev 133208 / 398498 Next

bug Rcmdr

On 1/4/2008 12:25 PM, John Fox wrote:
This happens because you're wrapping the expression in withVisible(), 
then parsing it.  If you add braces it should be fine, i.e. wrap in

"withVisible({", "})"

so that you end up executing

withVisible({ a<- 2; a <- a+5; a })

instead of the syntax error

withVisible( a<- 2; a <- a+5; a )

I've sent more on the double evaluation problem privately.

Duncan Murdoch