Re: [Rd] Avoid entering {} evaluation in debugger
>> "Josh O'Brien" >> on Mon, 6 May 2013 15:29:39 -0700 (PDT) wrote: [...] > I believe that your sessionInfo() results leave out the most important > detail, which is that you're running R from Emacs/ESS. Is that right? Nope, I have reported it from R terminal. > I get this same, occasion
Re: [Rd] Avoid entering {} evaluation in debugger
Vitalie Spinu wrote > Hi, > >f1 <- function(){ >browser() >print("aaa") >} > >f2 <- function(){ >a <- 12 >eval(envir = parent.frame(), > bquote({ >b <- .(a) >})) >} > > > Now do, > > f1() > > and enter