Thanks guys,

I (triple-) checked (before upgrading to ESS 13.05-1) that doing
names(list(...)) stepped through the debugger, and it did indeed (i.e. I
wasn't pressing RET by mistake).

It's a moot point now, though, since upgrading has fixed that problem.

Cheers,

Josh

(Apologies for not checking for a newer version of ESS before I posted my
question, and thanks as always for the great work you all do on this
project.)



  >> f <- function(...) {browser(), dummy <-1}
>
> You probably pressed RET by accident. This works as expected:
>
>
>    > f <- function(...) {browser(); dummy <-1}
>    > f(a = 23)
>    Called from: f(a = 23)
>    Browse[1]>
>    debug at #1: dummy <- 1
>    Browse[2]> list(...)
>    $a
>    [1] 23
>
>    Browse[2]>
>
> The only thing that you have to remember is to avoid your breakpoint be
> the last in a call.
>
>     Vitalie
>

	[[alternative HTML version deleted]]

