Revision: 437
          http://rpy.svn.sourceforge.net/rpy/?rev=437&view=rev
Author:   lgautier
Date:     2008-03-15 04:06:45 -0700 (Sat, 15 Mar 2008)

Log Message:
-----------
- Typo in C comments
- type the function EnvironmentSexp_subscript (one warning less at compile time)

Modified Paths:
--------------
    trunk/sandbox/rpy_nextgen/rpy/rinterface/rinterface.c

Modified: trunk/sandbox/rpy_nextgen/rpy/rinterface/rinterface.c
===================================================================
--- trunk/sandbox/rpy_nextgen/rpy/rinterface/rinterface.c       2008-03-15 
09:04:14 UTC (rev 436)
+++ trunk/sandbox/rpy_nextgen/rpy/rinterface/rinterface.c       2008-03-15 
11:06:45 UTC (rev 437)
@@ -131,7 +131,7 @@
 
 /* --- Initialize and terminate an embedded R --- */
 /* Should having multiple threads of R become possible, 
- * Useful routines deal with can could appear here...
+ * useful routines could appear here...
  */
 static PyObject* EmbeddedR_init(PyObject *self, PyObject *args) 
 {
@@ -883,7 +883,7 @@
 
 static PyMappingMethods EnvironmentSexp_mappignMethods = {
   0, /* mp_length */
-  EnvironmentSexp_subscript, /* mp_subscript */
+  (binaryfunc)EnvironmentSexp_subscript, /* mp_subscript */
   0  /* mp_ass_subscript */
 };
 


This was sent by the SourceForge.net collaborative development platform, the 
world's largest Open Source development site.

-------------------------------------------------------------------------
This SF.net email is sponsored by: Microsoft
Defy all challenges. Microsoft(R) Visual Studio 2008.
http://clk.atdmt.com/MRT/go/vse0120000070mrt/direct/01/
_______________________________________________
rpy-list mailing list
rpy-list@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/rpy-list

Reply via email to