Re: [Rd] Patch proposal for R style consistency (concerning deparse.c)
On Thu, May 2, 2013 at 7:26 AM, Terry Therneau wrote: > I'll be the "anybody" to argue that > } else { > is an ugly kludge which you will never find in my source code. Yes, it's > necessary at the command line because the parser needs help in guessing > when an expression is finished, but
[Rd] Avoid entering {} evaluation in debugger
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 +