Update of /cvsroot/pure-data/externals/miXed/shared/toxy In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv4606/shared/toxy
Modified Files: plusbob.c scriptlet.c Log Message: restricted debug garbage to krzYszcz, few fixes in toxy
Index: plusbob.c =================================================================== RCS file: /cvsroot/pure-data/externals/miXed/shared/toxy/plusbob.c,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -d -r1.1 -r1.2 *** plusbob.c 19 Feb 2004 22:23:17 -0000 1.1 --- plusbob.c 10 Dec 2004 20:47:04 -0000 1.2 *************** *** 8,12 **** --- 8,14 ---- #include "plusbob.h"
+ #ifdef KRZYSZCZ //#define PLUSBOB_DEBUG + #endif
/* LATER let there be a choice of using either fake-symbols, or gpointers.
Index: scriptlet.c =================================================================== RCS file: /cvsroot/pure-data/externals/miXed/shared/toxy/scriptlet.c,v retrieving revision 1.13 retrieving revision 1.14 diff -C2 -d -r1.13 -r1.14 *** scriptlet.c 8 Dec 2004 15:40:13 -0000 1.13 --- scriptlet.c 10 Dec 2004 20:47:04 -0000 1.14 *************** *** 18,22 **** #include "scriptlet.h"
! #define SCRIPTLET_DEBUG
#define SCRIPTLET_INISIZE 1024 --- 18,24 ---- #include "scriptlet.h"
! #ifdef KRZYSZCZ ! //#define SCRIPTLET_DEBUG ! #endif
#define SCRIPTLET_INISIZE 1024 *************** *** 642,645 **** --- 644,650 ---- } } + else for (ptr = buf; *ptr; ptr++) + if (*ptr == '\r') + *ptr = ' '; /* LATER rethink */ ptr = buf; while (*ptr == ' ' || *ptr == '\t') ptr++; *************** *** 670,674 **** { outsp->s_locked = 0; ! scriptlet_reset(outsp = newsp); } } --- 675,679 ---- { outsp->s_locked = 0; ! outsp = newsp; } }