[PD-cvs] pd/src desire.c,1.1.2.217.2.214,1.1.2.217.2.215

Mathieu Bouchard matju at users.sourceforge.net
Fri Aug 17 09:49:14 CEST 2007


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

Modified Files:
      Tag: desiredata
	desire.c 
Log Message:
added with_reply support to #X restore


Index: desire.c
===================================================================
RCS file: /cvsroot/pure-data/pd/src/Attic/desire.c,v
retrieving revision 1.1.2.217.2.214
retrieving revision 1.1.2.217.2.215
diff -C2 -d -r1.1.2.217.2.214 -r1.1.2.217.2.215
*** desire.c	17 Aug 2007 05:22:55 -0000	1.1.2.217.2.214
--- desire.c	17 Aug 2007 07:49:09 -0000	1.1.2.217.2.215
***************
*** 731,737 ****
      t_pd *z = gensym("#X")->thing;
      if (!z) {error("out of context"); return;}
!     else if (z->_class != canvas_class) {error("wasn't a canvas"); return;}
      x->owner = (t_canvas *)z;
      canvas_objfor((t_canvas *)z, x, argc, argv);
  }
  
--- 731,738 ----
      t_pd *z = gensym("#X")->thing;
      if (!z) {error("out of context"); return;}
!     if (z->_class != canvas_class) {error("wasn't a canvas"); return;}
      x->owner = (t_canvas *)z;
      canvas_objfor((t_canvas *)z, x, argc, argv);
+     newest = x;
  }
  





More information about the Pd-cvs mailing list