Update of /cvsroot/pure-data/pd/src In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv23183
Modified Files: Tag: devel_0_39 x_connective.c Log Message: removed useless access to "newest".
Index: x_connective.c =================================================================== RCS file: /cvsroot/pure-data/pd/src/x_connective.c,v retrieving revision 1.3.4.1.2.8 retrieving revision 1.3.4.1.2.9 diff -C2 -d -r1.3.4.1.2.8 -r1.3.4.1.2.9 *** x_connective.c 30 Nov 2005 13:36:58 -0000 1.3.4.1.2.8 --- x_connective.c 28 Nov 2006 15:46:09 -0000 1.3.4.1.2.9 *************** *** 9,13 **** #include <string.h> #include <stdio.h> - extern t_pd *newest;
/* -------------------------- int ------------------------------ */ --- 9,12 ---- *************** *** 67,71 **** outlet_new(&x->x_obj, &s_float); floatinlet_new(&x->x_obj, &x->x_f); - newest = &x->x_obj.ob_pd; return (x); } --- 66,69 ---- *************** *** 110,114 **** outlet_new(&x->x_obj, &s_symbol); symbolinlet_new(&x->x_obj, &x->x_s); - newest = &x->x_obj.ob_pd; return (x); } --- 108,111 ---- *************** *** 166,170 **** t_bang *x = (t_bang *)pd_new(bang_class); outlet_new(&x->x_obj, &s_bang); - newest = &x->x_obj.ob_pd; return (x); } --- 163,166 ----