Update of /cvsroot/pure-data/externals/mrpeach/str In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv11373
Modified Files: str.c Log Message: Changed atom_blob back to atom_string
Index: str.c =================================================================== RCS file: /cvsroot/pure-data/externals/mrpeach/str/str.c,v retrieving revision 1.3 retrieving revision 1.4 diff -C2 -d -r1.3 -r1.4 *** str.c 7 Nov 2007 20:26:11 -0000 1.3 --- str.c 26 Nov 2007 17:14:11 -0000 1.4 *************** *** 310,314 **** * increment x->x_buf_end by the number of chars added to x->x_buf.s_data*/ { char *cP = (char *)x->x_buf.s_data + x->x_buf_end; ! atom_blob(a, cP, x->x_buf.s_length-x->x_buf_end); x->x_buf_end += strlen(cP); } --- 310,314 ---- * increment x->x_buf_end by the number of chars added to x->x_buf.s_data*/ { char *cP = (char *)x->x_buf.s_data + x->x_buf_end; ! atom_string(a, cP, x->x_buf.s_length-x->x_buf_end); x->x_buf_end += strlen(cP); } *************** *** 683,687 **** if (argv[0].a_type == A_SYMBOL) { /* the first argument may be a selector */ ! atom_blob(&argv[0], (char *)x->x_buf.s_data, MAXPDSTRING); for (i = 0; i < n_functions; ++i) { --- 683,687 ---- if (argv[0].a_type == A_SYMBOL) { /* the first argument may be a selector */ ! atom_string(&argv[0], (char *)x->x_buf.s_data, MAXPDSTRING); for (i = 0; i < n_functions; ++i) {