Update of /cvsroot/pure-data/pd/src In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv4914/pd/src
Modified Files: g_text.c notes.txt s_main.c Log Message: Fixed a bug
Index: notes.txt =================================================================== RCS file: /cvsroot/pure-data/pd/src/notes.txt,v retrieving revision 1.5 retrieving revision 1.6 diff -C2 -d -r1.5 -r1.6 *** notes.txt 6 Sep 2004 20:20:35 -0000 1.5 --- notes.txt 6 Sep 2004 22:37:26 -0000 1.6 *************** *** 28,31 **** --- 28,32 ---- portaudio fixed for inchans != outchans, e.g., emi emagic (2/6) sprout inlets/outlets on objects whose creation failed. + uploaded to CVS
doc:
Index: g_text.c =================================================================== RCS file: /cvsroot/pure-data/pd/src/g_text.c,v retrieving revision 1.4 retrieving revision 1.5 diff -C2 -d -r1.4 -r1.5 *** g_text.c 6 Sep 2004 20:20:34 -0000 1.4 --- g_text.c 6 Sep 2004 22:37:26 -0000 1.5 *************** *** 1160,1164 **** if (x->te_type == T_OBJECT) { ! char *pattern = ((pd_class(&x->te_pd) == text_class) ? "." : """"); if (firsttime) sys_vgui(".x%lx.c create line\ --- 1160,1164 ---- if (x->te_type == T_OBJECT) { ! char *pattern = ((pd_class(&x->te_pd) == text_class) ? "-" : """"); if (firsttime) sys_vgui(".x%lx.c create line\ *************** *** 1172,1176 **** glist_getcanvas(glist), tag, x1, y1, x2, y1, x2, y2, x1, y2, x1, y1); ! sys_vgui(".x%lx.c itemconfigure -dash %s\n", pattern); } } --- 1172,1177 ---- glist_getcanvas(glist), tag, x1, y1, x2, y1, x2, y2, x1, y2, x1, y1); ! sys_vgui(".x%lx.c itemconfigure -dash %s\n", ! glist_getcanvas(glist), pattern); } }
Index: s_main.c =================================================================== RCS file: /cvsroot/pure-data/pd/src/s_main.c,v retrieving revision 1.6 retrieving revision 1.7 diff -C2 -d -r1.6 -r1.7 *** s_main.c 6 Sep 2004 20:44:42 -0000 1.6 --- s_main.c 6 Sep 2004 22:37:26 -0000 1.7 *************** *** 8,12 **** */
! char pd_version[] = "Pd version 0.38 TEST 5\n"; char pd_compiletime[] = __TIME__; char pd_compiledate[] = __DATE__; --- 8,12 ---- */
! char pd_version[] = "Pd version 0.38 TEST 6\n"; char pd_compiletime[] = __TIME__; char pd_compiledate[] = __DATE__;