[Rd] prompt () and backticks for default arguments

Claudia Beleites cbeleites at units.it
Tue Aug 17 16:26:36 CEST 2010


Thanks, that works.

Are there any drawbacks to doing that in general?

If not, I suggest the following patch for utils/prompt.R

87c87,88
<                               paste(deparse(argls[[i]], width.cutoff= 500L),
---
 >                               paste(deparse(argls[[i]], width.cutoff= 500L,
 >                                             backtick = TRUE),

(Did I get right that this is waht I'm supposed to do?)

Best regards & thanks again,

Claudia


Prof Brian Ripley wrote:
> On Tue, 17 Aug 2010, Claudia Beleites wrote:
> 
>> Dear all,
>>
>> I just noticed, that prompt () looses backticks that protect default 
>> arguments:
>>
>> f <- function (FUN = `*`) {}
>>
>> cat (prompt (f, NA)$usage)
>>
>> yields:
>> \usage{ f(FUN = *) } %- maybe also 'usage' for other objects 
>> documented here.
>> without the backticks, which is of course found by R CMD check as 
>> syntax error.
>>
>> While this is easily fixed if the .Rd is further edited manually, I 
>> stumbled over it using the automated .Rd generation with inlinedocs - 
>> in this combination it is very inconvenient.
>>
>> Any suggestions?
> 
> Add backtick = TRUE to the deparse() call in prompt.default().
> 
>>
>> All the best,
>>
>> Claudia
>>
>>
>> -- 
>> Claudia Beleites
>> Dipartimento dei Materiali e delle Risorse Naturali
>> Università degli Studi di Trieste
>> Via Alfonso Valerio 6/a
>> I-34127 Trieste
>>
>> phone: +39 0 40 5 58-37 68
>> email: cbeleites at units.it
>>
>> ______________________________________________
>> R-devel at r-project.org mailing list
>> https://stat.ethz.ch/mailman/listinfo/r-devel
>>
> 


-- 
Claudia Beleites
Dipartimento dei Materiali e delle Risorse Naturali
Università degli Studi di Trieste
Via Alfonso Valerio 6/a
I-34127 Trieste

phone: +39 0 40 5 58-37 68
email: cbeleites at units.it



More information about the R-devel mailing list