Re: [Rd] Documentation update to R-lang.texi

2007-04-17 Thread Duncan Murdoch
On 4/16/2007 12:57 PM, Jeffrey Horner wrote: > Section 4.3.4 of R-lang.texi version 41191 in the paragraph that starts > "When h(3) is..." explains that x and y are unbound variables in the > function body of g in this example: > > f <- function(x) { > y <- 10 > g <- fu

[Rd] Documentation update to R-lang.texi

2007-04-16 Thread Jeffrey Horner
Section 4.3.4 of R-lang.texi version 41191 in the paragraph that starts "When h(3) is..." explains that x and y are unbound variables in the function body of g in this example: f <- function(x) { y <- 10 g <- function(x) x + y return(g) } h <- f()