Revision: 52
http://bugs-r.svn.sourceforge.net/bugs-r/?rev=52&view=rev
Author: ligges
Date: 2007-09-14 03:11:39 -0700 (Fri, 14 Sep 2007)
Log Message:
-----------
bugfix
Modified Paths:
--------------
trunk/BRugs/R/model.dynamic.R
Modified: trunk/BRugs/R/model.dynamic.R
===================================================================
--- trunk/BRugs/R/model.dynamic.R 2007-09-14 09:44:27 UTC (rev 51)
+++ trunk/BRugs/R/model.dynamic.R 2007-09-14 10:11:39 UTC (rev 52)
@@ -3,7 +3,7 @@
# Enable Dynamic Compilation
{
command <- "BugsEmbed.CompiledGuard; BugsEmbed.EnableDynamic"
- invisible(.C("Integer", command, nchar(command), integer(1), integer(1), PACKAGE="BRugs")[[3]])
+ invisible(.C("CmdInterpreter", command, nchar(command), integer(1), PACKAGE="BRugs")[[3]])
}
"modelDisableDynamic" <-
@@ -11,5 +11,5 @@
# Disable Dynamic Compilation
{
command <- "BugsEmbed.CompiledGuard; BugsEmbed.DisableDynamic"
- invisible(.C("Integer", command, nchar(command), integer(1), integer(1), PACKAGE="BRugs")[[3]])
+ invisible(.C("CmdInterpreter", command, nchar(command), integer(1), PACKAGE="BRugs")[[3]])
}
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|