Skip to content
Prev 15466 / 63424 Next

package.skeleton

James MacDonald wrote:

            
Yes, I think package.skeleton() needs the follwing simple fix (since we 
do not get() each object in prompt() any more - alternatively, reverting 
some changes in prompt() fixes it as well):


@@ -140,7 +140,7 @@
      sink(outConn, type = "output")
      yy <- try(sapply(list,
                       function(item) {
-                         prompt(item,
+                         prompt(name = item,
                                  filename = file.path(path, name, "man",
                                  paste(list0[item], "Rd", sep=".")))
                       }))



Uwe Ligges