aboutsummaryrefslogtreecommitdiff
path: root/externals/grill/py/source/modmeth.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'externals/grill/py/source/modmeth.cpp')
-rw-r--r--externals/grill/py/source/modmeth.cpp13
1 files changed, 3 insertions, 10 deletions
diff --git a/externals/grill/py/source/modmeth.cpp b/externals/grill/py/source/modmeth.cpp
index 3d5c0a1d..83e8a7b6 100644
--- a/externals/grill/py/source/modmeth.cpp
+++ b/externals/grill/py/source/modmeth.cpp
@@ -142,18 +142,11 @@ PyObject *py::py_send(PyObject *,PyObject *args)
AtomList *lst = GetPyArgs(val);
if(lst) {
-// t_class **cl = (t_class **)GetBound(recv);
- t_class **cl = (t_class **)recv->s_thing;
- if(cl) {
-#if FLEXT_SYS == FLEXT_SYS_PD
- pd_forwardmess(cl,lst->Count(),lst->Atoms());
-#else
-#pragma message ("Send is not implemented")
-#endif
- }
+ if(!Forward(recv,*lst))
#ifdef FLEXT_DEBUG
- else
post("py/pyext - Receiver doesn't exist");
+#else
+ {}
#endif
}
else