Update of /cvsroot/pure-data/externals/zexy/src In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv5971
Modified Files: atoi.c demultiplex.c fifop.c length.c lifop.c lpt.c matchbox.c mavg.c minmax.c multiplex.c regex.c repack.c sort.c sum.c urn.c wrap.c z~.c Log Message: replaced gensym("float") by &s_float
Index: demultiplex.c =================================================================== RCS file: /cvsroot/pure-data/externals/zexy/src/demultiplex.c,v retrieving revision 1.6 retrieving revision 1.7 diff -C2 -d -r1.6 -r1.7 *** demultiplex.c 14 Mar 2007 09:08:55 -0000 1.6 --- demultiplex.c 30 Oct 2007 09:26:46 -0000 1.7 *************** *** 90,94 **** x->n_out = n - 1;
! inlet_new(&x->x_obj, &x->x_obj.ob_pd, gensym("float"), gensym("select")); x->out = (t_outlet **)getbytes(n * sizeof(t_outlet *));
--- 90,94 ---- x->n_out = n - 1;
! inlet_new(&x->x_obj, &x->x_obj.ob_pd, &s_float, gensym("select")); x->out = (t_outlet **)getbytes(n * sizeof(t_outlet *));
Index: sort.c =================================================================== RCS file: /cvsroot/pure-data/externals/zexy/src/sort.c,v retrieving revision 1.8 retrieving revision 1.9 diff -C2 -d -r1.8 -r1.9 *** sort.c 14 Mar 2007 09:08:56 -0000 1.8 --- sort.c 30 Oct 2007 09:26:46 -0000 1.9 *************** *** 135,139 **** x->buffer = NULL;
! inlet_new(&x->x_obj, &x->x_obj.ob_pd, gensym("float"), gensym("direction"));
return (x); --- 135,139 ---- x->buffer = NULL;
! inlet_new(&x->x_obj, &x->x_obj.ob_pd, &s_float, gensym("direction"));
return (x);
Index: lpt.c =================================================================== RCS file: /cvsroot/pure-data/externals/zexy/src/lpt.c,v retrieving revision 1.14 retrieving revision 1.15 diff -C2 -d -r1.14 -r1.15 *** lpt.c 14 Mar 2007 09:08:56 -0000 1.14 --- lpt.c 30 Oct 2007 09:26:46 -0000 1.15 *************** *** 166,171 ****
! inlet_new(&x->x_obj, &x->x_obj.ob_pd, gensym("float"), gensym("control")); ! outlet_new(&x->x_obj, gensym("float")); x->mode = MODE_NONE; x->port = 0; --- 166,171 ----
! inlet_new(&x->x_obj, &x->x_obj.ob_pd, &s_float, gensym("control")); ! outlet_new(&x->x_obj, &s_float); x->mode = MODE_NONE; x->port = 0;
Index: multiplex.c =================================================================== RCS file: /cvsroot/pure-data/externals/zexy/src/multiplex.c,v retrieving revision 1.8 retrieving revision 1.9 diff -C2 -d -r1.8 -r1.9 *** multiplex.c 14 Mar 2007 09:08:56 -0000 1.8 --- multiplex.c 30 Oct 2007 09:26:46 -0000 1.9 *************** *** 80,84 **** }
! inlet_new(&x->x_obj, &x->x_obj.ob_pd, gensym("float"), gensym(""));
outlet_new(&x->x_obj, 0); --- 80,84 ---- }
! inlet_new(&x->x_obj, &x->x_obj.ob_pd, &s_float, gensym(""));
outlet_new(&x->x_obj, 0);
Index: regex.c =================================================================== RCS file: /cvsroot/pure-data/externals/zexy/src/regex.c,v retrieving revision 1.9 retrieving revision 1.10 diff -C2 -d -r1.9 -r1.10 *** regex.c 14 Mar 2007 09:08:56 -0000 1.9 --- regex.c 30 Oct 2007 09:26:46 -0000 1.10 *************** *** 271,275 **** x->x_outResult=outlet_new(&x->x_obj, 0); x->x_outDetails=outlet_new(&x->x_obj, gensym("list")); ! x->x_outNumDetails=outlet_new(&x->x_obj, gensym("float"));
--- 271,275 ---- x->x_outResult=outlet_new(&x->x_obj, 0); x->x_outDetails=outlet_new(&x->x_obj, gensym("list")); ! x->x_outNumDetails=outlet_new(&x->x_obj, &s_float);
Index: mavg.c =================================================================== RCS file: /cvsroot/pure-data/externals/zexy/src/mavg.c,v retrieving revision 1.5 retrieving revision 1.6 diff -C2 -d -r1.5 -r1.6 *** mavg.c 14 Mar 2007 09:08:56 -0000 1.5 --- mavg.c 30 Oct 2007 09:26:46 -0000 1.6 *************** *** 84,89 **** t_float *dumbuf;
! outlet_new(&x->x_obj, gensym("float")); ! inlet_new(&x->x_obj, &x->x_obj.ob_pd, gensym("float"), gensym(""));
x->buf = x->wp = (t_float *)getbytes(sizeof(t_float) * i); --- 84,89 ---- t_float *dumbuf;
! outlet_new(&x->x_obj, &s_float); ! inlet_new(&x->x_obj, &x->x_obj.ob_pd, &s_float, gensym(""));
x->buf = x->wp = (t_float *)getbytes(sizeof(t_float) * i);
Index: matchbox.c =================================================================== RCS file: /cvsroot/pure-data/externals/zexy/src/matchbox.c,v retrieving revision 1.6 retrieving revision 1.7 diff -C2 -d -r1.6 -r1.7 *** matchbox.c 24 Jul 2007 13:30:29 -0000 1.6 --- matchbox.c 30 Oct 2007 09:26:46 -0000 1.7 *************** *** 626,630 ****
x->x_outResult =outlet_new(&x->x_obj, gensym("list")); ! x->x_outNumResults=outlet_new(&x->x_obj, gensym("float"));
--- 626,630 ----
x->x_outResult =outlet_new(&x->x_obj, gensym("list")); ! x->x_outNumResults=outlet_new(&x->x_obj, &s_float);
Index: wrap.c =================================================================== RCS file: /cvsroot/pure-data/externals/zexy/src/wrap.c,v retrieving revision 1.8 retrieving revision 1.9 diff -C2 -d -r1.8 -r1.9 *** wrap.c 14 Mar 2007 09:08:56 -0000 1.8 --- wrap.c 30 Oct 2007 09:26:46 -0000 1.9 *************** *** 64,68 ****
outlet_new(&x->x_obj, &s_float); ! inlet_new(&x->x_obj, &x->x_obj.ob_pd, gensym("float"), gensym("set"));
return (x); --- 64,68 ----
outlet_new(&x->x_obj, &s_float); ! inlet_new(&x->x_obj, &x->x_obj.ob_pd, &s_float, gensym("set"));
return (x);
Index: minmax.c =================================================================== RCS file: /cvsroot/pure-data/externals/zexy/src/minmax.c,v retrieving revision 1.6 retrieving revision 1.7 diff -C2 -d -r1.6 -r1.7 *** minmax.c 14 Mar 2007 09:08:56 -0000 1.6 --- minmax.c 30 Oct 2007 09:26:46 -0000 1.7 *************** *** 60,65 **** t_minmax *x = (t_minmax *)pd_new(minmax_class);
! x->mino=outlet_new(&x->x_obj, gensym("float")); ! x->maxo=outlet_new(&x->x_obj, gensym("float"));
x->min = x->max = 0; --- 60,65 ---- t_minmax *x = (t_minmax *)pd_new(minmax_class);
! x->mino=outlet_new(&x->x_obj, &s_float); ! x->maxo=outlet_new(&x->x_obj, &s_float);
x->min = x->max = 0;
Index: length.c =================================================================== RCS file: /cvsroot/pure-data/externals/zexy/src/length.c,v retrieving revision 1.8 retrieving revision 1.9 diff -C2 -d -r1.8 -r1.9 *** length.c 14 Mar 2007 09:08:56 -0000 1.8 --- length.c 30 Oct 2007 09:26:46 -0000 1.9 *************** *** 41,45 **** { t_length *x = (t_length *)pd_new(length_class); ! outlet_new(&x->x_obj, gensym("float")); return (x); } --- 41,45 ---- { t_length *x = (t_length *)pd_new(length_class); ! outlet_new(&x->x_obj, &s_float); return (x); }
Index: fifop.c =================================================================== RCS file: /cvsroot/pure-data/externals/zexy/src/fifop.c,v retrieving revision 1.15 retrieving revision 1.16 diff -C2 -d -r1.15 -r1.16 *** fifop.c 14 Mar 2007 09:08:56 -0000 1.15 --- fifop.c 30 Oct 2007 09:26:46 -0000 1.16 *************** *** 279,283 **** floatinlet_new(&x->x_obj, &x->priority); x->x_out =outlet_new(&x->x_obj, gensym("list" )); ! x->x_infout=outlet_new(&x->x_obj, gensym("float"));
x->fifo_list = 0; --- 279,283 ---- floatinlet_new(&x->x_obj, &x->priority); x->x_out =outlet_new(&x->x_obj, gensym("list" )); ! x->x_infout=outlet_new(&x->x_obj, &s_float);
x->fifo_list = 0;
Index: lifop.c =================================================================== RCS file: /cvsroot/pure-data/externals/zexy/src/lifop.c,v retrieving revision 1.13 retrieving revision 1.14 diff -C2 -d -r1.13 -r1.14 *** lifop.c 14 Mar 2007 09:08:56 -0000 1.13 --- lifop.c 30 Oct 2007 09:26:46 -0000 1.14 *************** *** 255,259 **** floatinlet_new(&x->x_obj, &x->priority); x->x_out=outlet_new(&x->x_obj, gensym("list")); ! x->x_infout=outlet_new(&x->x_obj, gensym("float"));
x->lifo_list = 0; --- 255,259 ---- floatinlet_new(&x->x_obj, &x->priority); x->x_out=outlet_new(&x->x_obj, gensym("list")); ! x->x_infout=outlet_new(&x->x_obj, &s_float);
x->lifo_list = 0;
Index: repack.c =================================================================== RCS file: /cvsroot/pure-data/externals/zexy/src/repack.c,v retrieving revision 1.5 retrieving revision 1.6 diff -C2 -d -r1.5 -r1.6 *** repack.c 14 Mar 2007 09:08:56 -0000 1.5 --- repack.c 30 Oct 2007 09:26:46 -0000 1.6 *************** *** 160,164 **** x->buffer = (t_atom *)getbytes(x->bufsize * sizeof(t_atom));
! inlet_new(&x->x_obj, &x->x_obj.ob_pd, gensym("float"), gensym("")); outlet_new(&x->x_obj, 0);
--- 160,164 ---- x->buffer = (t_atom *)getbytes(x->bufsize * sizeof(t_atom));
! inlet_new(&x->x_obj, &x->x_obj.ob_pd, &s_float, gensym("")); outlet_new(&x->x_obj, 0);
Index: sum.c =================================================================== RCS file: /cvsroot/pure-data/externals/zexy/src/sum.c,v retrieving revision 1.5 retrieving revision 1.6 diff -C2 -d -r1.5 -r1.6 *** sum.c 14 Mar 2007 09:08:56 -0000 1.5 --- sum.c 30 Oct 2007 09:26:46 -0000 1.6 *************** *** 40,44 **** t_sum *x = (t_sum *)pd_new(sum_class);
! outlet_new(&x->x_obj, gensym("float"));
return (x); --- 40,44 ---- t_sum *x = (t_sum *)pd_new(sum_class);
! outlet_new(&x->x_obj, &s_float);
return (x);
Index: atoi.c =================================================================== RCS file: /cvsroot/pure-data/externals/zexy/src/atoi.c,v retrieving revision 1.5 retrieving revision 1.6 diff -C2 -d -r1.5 -r1.6 *** atoi.c 14 Mar 2007 09:08:55 -0000 1.5 --- atoi.c 30 Oct 2007 09:26:46 -0000 1.6 *************** *** 80,84 **** { t_atoi *x = (t_atoi *)pd_new(atoi_class); ! outlet_new(&x->x_obj, gensym("float")); return (x); } --- 80,84 ---- { t_atoi *x = (t_atoi *)pd_new(atoi_class); ! outlet_new(&x->x_obj, &s_float); return (x); }
Index: urn.c =================================================================== RCS file: /cvsroot/pure-data/externals/zexy/src/urn.c,v retrieving revision 1.6 retrieving revision 1.7 diff -C2 -d -r1.6 -r1.7 *** urn.c 14 Mar 2007 09:08:56 -0000 1.6 --- urn.c 30 Oct 2007 09:26:46 -0000 1.7 *************** *** 115,119 **** ZEXY_USEVAR(s);
! inlet_new(&x->x_obj, &x->x_obj.ob_pd, gensym("float"), gensym("")); x->x_floatout=outlet_new(&x->x_obj, &s_float); x->x_bangout =outlet_new(&x->x_obj, &s_bang); --- 115,119 ---- ZEXY_USEVAR(s);
! inlet_new(&x->x_obj, &x->x_obj.ob_pd, &s_float, gensym("")); x->x_floatout=outlet_new(&x->x_obj, &s_float); x->x_bangout =outlet_new(&x->x_obj, &s_bang);
Index: z~.c =================================================================== RCS file: /cvsroot/pure-data/externals/zexy/src/z~.c,v retrieving revision 1.6 retrieving revision 1.7 diff -C2 -d -r1.6 -r1.7 *** z~.c 30 Oct 2007 09:21:52 -0000 1.6 --- z~.c 30 Oct 2007 09:26:46 -0000 1.7 *************** *** 102,106 **** x->phase = 0;
! inlet_new(&x->x_obj, &x->x_obj.ob_pd, gensym("float"), gensym("ft1")); outlet_new(&x->x_obj, gensym("signal")); return (x); --- 102,106 ---- x->phase = 0;
! inlet_new(&x->x_obj, &x->x_obj.ob_pd, &s_float, gensym("ft1")); outlet_new(&x->x_obj, gensym("signal")); return (x);