>> "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
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
Hi,
f1 <- function(){
browser()
print("aaa")
}
f2 <- function(){
a <- 12
eval(envir = parent.frame(),
bquote({
b <- .(a)
}))
}
Now do,
f1()
and enter n RET and then {1+2}:
Browse[2]> {1 + 2}
debug at #1: 1 +