Update of /cvsroot/pure-data/pd/src In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv22638
Modified Files: Tag: desiredata desire.c Log Message: fixed duplicate serial
Index: desire.c =================================================================== RCS file: /cvsroot/pure-data/pd/src/Attic/desire.c,v retrieving revision 1.1.2.217.2.28 retrieving revision 1.1.2.217.2.29 diff -C2 -d -r1.1.2.217.2.28 -r1.1.2.217.2.29 *** desire.c 5 Dec 2006 15:29:08 -0000 1.1.2.217.2.28 --- desire.c 5 Dec 2006 19:32:06 -0000 1.1.2.217.2.29 *************** *** 6015,6019 **** } /* make a "broken object", that is, one that should appear with a dashed contour. */ ! if (!x) x = (t_text *)pd_new(text_class); x->binbuf = b; x->x = xpix; --- 6015,6022 ---- } /* make a "broken object", that is, one that should appear with a dashed contour. */ ! if (!x) { ! x = (t_text *)pd_new(text_class); ! pd_set_newest(x); ! } x->binbuf = b; x->x = xpix; *************** *** 6024,6028 **** if (x->_class== vinlet_class) canvas_resortinlets(canvas_getcanvas(gl)); if (x->_class==voutlet_class) canvas_resortoutlets(canvas_getcanvas(gl)); - pd_set_newest(x); pd_popsym(gl); } --- 6027,6030 ----