[PD-cvs] pd/src m_binbuf.c,1.4.4.1.2.4,1.4.4.1.2.5

Mathieu Bouchard matju at users.sourceforge.net
Tue Jun 13 09:45:36 CEST 2006


Update of /cvsroot/pure-data/pd/src
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv513

Modified Files:
      Tag: devel_0_39
	m_binbuf.c 
Log Message:
reenabled receive-pointer hack


Index: m_binbuf.c
===================================================================
RCS file: /cvsroot/pure-data/pd/src/m_binbuf.c,v
retrieving revision 1.4.4.1.2.4
retrieving revision 1.4.4.1.2.5
diff -C2 -d -r1.4.4.1.2.4 -r1.4.4.1.2.5
*** m_binbuf.c	30 Nov 2005 13:36:57 -0000	1.4.4.1.2.4
--- m_binbuf.c	13 Jun 2006 07:45:33 -0000	1.4.4.1.2.5
***************
*** 503,513 ****
              }
              else s = atom_getsymbol(at);
  	    /* IMPD: allows messages to unbound objects, via pointers */
- /*	    target = s->s_thing;
  	    if (!target) {
  		if (!sscanf(s->s_name,".x%x",&target)) target=0;
  	    }
! */
!             if (!(target = s->s_thing))
              {
                  error("%s: no such object", s->s_name);
--- 503,514 ----
              }
              else s = atom_getsymbol(at);
+ 	    target = s->s_thing;
+ #ifdef DESIRE
  	    /* IMPD: allows messages to unbound objects, via pointers */
  	    if (!target) {
  		if (!sscanf(s->s_name,".x%x",&target)) target=0;
  	    }
! #endif
!             if (!target)
              {
                  error("%s: no such object", s->s_name);





More information about the Pd-cvs mailing list