[PD-cvs] pd/src desire.c,1.1.2.217.2.191,1.1.2.217.2.192

Mathieu Bouchard matju at users.sourceforge.net
Tue Aug 7 09:35:01 CEST 2007


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

Modified Files:
      Tag: desiredata
	desire.c 
Log Message:
fix typo about indices in objects_reinit,wires_reinit


Index: desire.c
===================================================================
RCS file: /cvsroot/pure-data/pd/src/Attic/desire.c,v
retrieving revision 1.1.2.217.2.191
retrieving revision 1.1.2.217.2.192
diff -C2 -d -r1.1.2.217.2.191 -r1.1.2.217.2.192
*** desire.c	7 Aug 2007 07:05:42 -0000	1.1.2.217.2.191
--- desire.c	7 Aug 2007 07:34:56 -0000	1.1.2.217.2.192
***************
*** 6014,6021 ****
  		t_canvas *can = (t_canvas *)self;
  		char *bar=foo; *foo=0;
! 		canvas_each(y,can) bar+=sprintf(bar,"x%lx x%lx ",y->dix->index,(long)y);
  		sys_mgui(self,"objects_reinit","S",foo);
  		bar=foo; *foo=0;
! 		canvas_wires_each(oc,t,can) bar+=sprintf(bar,"x%lx x%lx ",oc->dix->index,(long)oc);
  		sys_mgui(self,"wires_reinit","S",foo);
  		sys_mgui(self,"name=","s",can->name);
--- 6014,6021 ----
  		t_canvas *can = (t_canvas *)self;
  		char *bar=foo; *foo=0;
! 		canvas_each(y,can) bar+=sprintf(bar,"%lx x%lx ",y->dix->index,(long)y);
  		sys_mgui(self,"objects_reinit","S",foo);
  		bar=foo; *foo=0;
! 		canvas_wires_each(oc,t,can) bar+=sprintf(bar,"%lx x%lx ",oc->dix->index,(long)oc);
  		sys_mgui(self,"wires_reinit","S",foo);
  		sys_mgui(self,"name=","s",can->name);





More information about the Pd-cvs mailing list