[Rd] \\signature macro generated by promptMethods

2009-11-09 Thread Romain Francois
Hello, promptMethods generate a macro for signatures, but the macro does not exist in the Rd parser. setClass(track, + representation(x=numeric, y=numeric)) [1] track setGeneric(foo, function(x){ standardGeneric(foo) } ) [1] foo setMethod( foo, track, function(x){ NULL } ) [1] foo

Re: [Rd] \\signature macro generated by promptMethods

2009-11-09 Thread Duncan Murdoch
On 09/11/2009 7:39 AM, Romain Francois wrote: Hello, promptMethods generate a macro for signatures, but the macro does not exist in the Rd parser. Right, that's not supposed to be a macro. See ?cbind2 for an example, \item{\code{signature(x = ANY, y = ANY)}}{the default method using

Re: [Rd] \\signature macro generated by promptMethods

2009-11-09 Thread Duncan Murdoch
On 11/9/2009 8:12 AM, Duncan Murdoch wrote: On 09/11/2009 7:39 AM, Romain Francois wrote: Hello, promptMethods generate a macro for signatures, but the macro does not exist in the Rd parser. Right, that's not supposed to be a macro. See ?cbind2 for an example, \item{\code{signature(x =