[PD-cvs] pd/src desire.c,1.1.2.217.2.232,1.1.2.217.2.233

Mathieu Bouchard matju at users.sourceforge.net
Mon Aug 20 06:06:32 CEST 2007


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

Modified Files:
      Tag: desiredata
	desire.c 
Log Message:
fix previous commit


Index: desire.c
===================================================================
RCS file: /cvsroot/pure-data/pd/src/Attic/desire.c,v
retrieving revision 1.1.2.217.2.232
retrieving revision 1.1.2.217.2.233
diff -C2 -d -r1.1.2.217.2.232 -r1.1.2.217.2.233
*** desire.c	20 Aug 2007 03:46:28 -0000	1.1.2.217.2.232
--- desire.c	20 Aug 2007 04:06:28 -0000	1.1.2.217.2.233
***************
*** 6127,6131 ****
      SET(nonzero,1.0);
      outlet_new(x, &s_float);
!     toggle_reload(x,0,argc,argv);
      return x;
  }
--- 6127,6131 ----
      SET(nonzero,1.0);
      outlet_new(x, &s_float);
!     if (argc) toggle_reload(x,0,argc,argv);
      return x;
  }
***************
*** 6241,6245 ****
      SET(on_old,x->on);
      outlet_new(x, &s_list);
!     radio_reload(x,0,argc,argv);
      return x;
  }
--- 6241,6245 ----
      SET(on_old,x->on);
      outlet_new(x, &s_list);
!     if (argc) radio_reload(x,0,argc,argv);
      return x;
  }
***************
*** 6342,6346 ****
      if (x->orient) SET(h,IEM_SL_DEFAULTSIZE); else SET(w,IEM_SL_DEFAULTSIZE);
      outlet_new(x, &s_float);
!     slider_reload(x,0,argc,argv);
      return x;
  }
--- 6342,6346 ----
      if (x->orient) SET(h,IEM_SL_DEFAULTSIZE); else SET(w,IEM_SL_DEFAULTSIZE);
      outlet_new(x, &s_float);
!     if (argc) slider_reload(x,0,argc,argv);
      return x;
  }
***************
*** 6435,6439 ****
      SET(change,0);
      outlet_new(x, &s_float);
!     nbx_reload(x,0,argc,argv);
      return x;
  }
--- 6435,6439 ----
      SET(change,0);
      outlet_new(x, &s_float);
!     if (argc) nbx_reload(x,0,argc,argv);
      return x;
  }
***************
*** 6523,6527 ****
      vu_check_height(x,x->h);
      inlet_new(x,x,&s_float,gensym("ft1"));
!     vu_reload(x,0,argc,argv);
      return x;
  }
--- 6523,6527 ----
      vu_check_height(x,x->h);
      inlet_new(x,x,&s_float,gensym("ft1"));
!     if (argc) vu_reload(x,0,argc,argv);
      return x;
  }
***************
*** 6579,6583 ****
      SET(vis_w,100);
      SET(vis_h,60);
!     cnv_reload(x,0,argc,argv);
      return x;
  }
--- 6579,6583 ----
      SET(vis_w,100);
      SET(vis_h,60);
!     if (argc) cnv_reload(x,0,argc,argv);
      return x;
  }





More information about the Pd-cvs mailing list