[Swift-commit] r4067 - SwiftApps/SwiftR/Swift/R

noreply at svn.ci.uchicago.edu noreply at svn.ci.uchicago.edu
Mon Feb 7 17:31:18 CST 2011


Author: tga
Date: 2011-02-07 17:31:18 -0600 (Mon, 07 Feb 2011)
New Revision: 4067

Modified:
   SwiftApps/SwiftR/Swift/R/Apply.R
Log:
Introduced a bug in swiftLapply previously by passing argument unnecessarily to swiftapply.


Modified: SwiftApps/SwiftR/Swift/R/Apply.R
===================================================================
--- SwiftApps/SwiftR/Swift/R/Apply.R	2011-02-07 22:50:53 UTC (rev 4066)
+++ SwiftApps/SwiftR/Swift/R/Apply.R	2011-02-07 23:31:18 UTC (rev 4067)
@@ -114,7 +114,7 @@
     arglists[[i]] <- list(tlist[[i]], ...);
   }
   names(arglists) = names(tlist)
-  swiftapply(func, arglists, ...)
+  swiftapply(func, arglists)
 }
 
 




More information about the Swift-commit mailing list