Re: [rkward-devel] as.list wrong behaviour

2011-01-04 Thread Eduardo de Oliveira Horta
Thanks! On Tue, Jan 4, 2011 at 2:13 PM, Thomas Friedrichsmeier < [email protected]> wrote: > Hi, > > On Tuesday 04 January 2011, Eduardo de Oliveira Horta wrote: > > > B = 1000 > > > oblist = as.list(.GlobalEnv) > > the problem appears to be our use of "active bindings" (s

Re: [rkward-devel] as.list wrong behaviour

2011-01-04 Thread Thomas Friedrichsmeier
Hi, On Tuesday 04 January 2011, Eduardo de Oliveira Horta wrote: > > B = 1000 > > oblist = as.list(.GlobalEnv) the problem appears to be our use of "active bindings" (see ?makeActiveBinding). Internally, RKWard replaces all objects inside .GlobalEnv by active bindings. This allows us to find ou

[rkward-devel] as.list wrong behaviour

2011-01-04 Thread Eduardo de Oliveira Horta
Hello there. First of all, congratulations for the magnificent software you're building. Now let me comment on a little problem I'm having: if I insert the following code in a RKWard session > B = 1000 > oblist = as.list(.GlobalEnv) Then I get > str(oblist) List of 1 $ B:function (value) > ob