[R-gregmisc-users] SF.net SVN: r-gregmisc: [1070] trunk/fork/R
Brought to you by:
warnes
From: <wa...@us...> - 2007-03-06 23:29:17
|
Revision: 1070 http://svn.sourceforge.net/r-gregmisc/?rev=1070&view=rev Author: warnes Date: 2007-03-06 15:29:12 -0800 (Tue, 06 Mar 2007) Log Message: ----------- Add 'PACKAGE=' argument to '.C' calls to make 'R CMD check' happy Modified Paths: -------------- trunk/fork/R/handleSIGCLD.R trunk/fork/R/restoreSIGCLD.R Modified: trunk/fork/R/handleSIGCLD.R =================================================================== --- trunk/fork/R/handleSIGCLD.R 2007-03-06 23:28:27 UTC (rev 1069) +++ trunk/fork/R/handleSIGCLD.R 2007-03-06 23:29:12 UTC (rev 1070) @@ -5,6 +5,6 @@ handleSIGCLD <- function() { - .C("R_install_sigcld_handler") + .C("R_install_sigcld_handler", PACKAGE="fork") invisible(NULL) } Modified: trunk/fork/R/restoreSIGCLD.R =================================================================== --- trunk/fork/R/restoreSIGCLD.R 2007-03-06 23:28:27 UTC (rev 1069) +++ trunk/fork/R/restoreSIGCLD.R 2007-03-06 23:29:12 UTC (rev 1070) @@ -1,6 +1,6 @@ # Restore the original SIGCLD hander. This reverses the action of 'handleSIGCLD'. restoreSIGCLD <- function() { - .C("R_restore_sigcld_handler") + .C("R_restore_sigcld_handler", PACKAGE="fork") invisible(NULL) } This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |