Re: [R] debug only top level function

2019-06-06 Thread Martin Maechler
;blurred" for byte compiled functions, and as the default JIT level is high, I had occasionallz wanted an easy way to revert the byte compilation before debugging or another way to get rid of this drawback.. Martin >> >> Best regards >> Petr >>

Re: [R] debug only top level function

2019-06-06 Thread Duncan Murdoch
11 AM To: PIKAL Petr ; r-help@r-project.org Subject: Re: [R] debug only top level function On 06/06/2019 4:55 a.m., PIKAL Petr wrote: Dear all I have a question about debug function. I did not use it for long time but my vague memory tell me, that when I used debug(myfunction) in past, only

Re: [R] debug only top level function

2019-06-06 Thread PIKAL Petr
d be worth considering to add something about it to debug help page. Best regards Petr > -Original Message- > From: Duncan Murdoch > Sent: Thursday, June 6, 2019 11:11 AM > To: PIKAL Petr ; r-help@r-project.org > Subject: Re: [R] debug only top level function > > On 0

Re: [R] debug only top level function

2019-06-06 Thread Duncan Murdoch
On 06/06/2019 4:55 a.m., PIKAL Petr wrote: Dear all I have a question about debug function. I did not use it for long time but my vague memory tell me, that when I used debug(myfunction) in past, only myfunction was debugged and browser ignored any embedded function. example (simple) fff <-

[R] debug only top level function

2019-06-06 Thread PIKAL Petr
Dear all I have a question about debug function. I did not use it for long time but my vague memory tell me, that when I used debug(myfunction) in past, only myfunction was debugged and browser ignored any embedded function. example (simple) fff <- function(x) mean(x, na.rm=T) when I issue >