Update of /cvsroot/pure-data/externals/cxc
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv32627
Modified Files:
README prepend.c split.c
Log Message:
renamed cxc.*.c to cxc_*.c so that they can be built as individual objects
Index: prepend.c
===================================================================
RCS file: /cvsroot/pure-data/externals/cxc/prepend.c,v
retrieving revision 1.1.1.1
retrieving revision 1.2
diff -C2 -d -r1.1.1.1 -r1.2
*** prepend.c 2 Jul 2002 20:32:58 -0000 1.1.1.1
--- prepend.c 19 May 2004 01:29:15 -0000 1.2
***************
*** 8,12 ****
funtional. i keep it here for reference since i dont wnat to fix it over and over ;)
but its not included in the makefile to avoid namespace clash with ggee.prepend
! anyhow, i ll just rename it cxc.prepend
*/
--- 8,12 ----
funtional. i keep it here for reference since i dont wnat to fix it over and over ;)
but its not included in the makefile to avoid namespace clash with ggee.prepend
! anyhow, i ll just rename it cxc_prepend
*/
***************
*** 101,105 ****
x->x_s = s;
else
! x->x_s = gensym("cxc.prepend");
return (x);
}
--- 101,105 ----
x->x_s = s;
else
! x->x_s = gensym("cxc_prepend");
return (x);
}
***************
*** 112,116 ****
void prepend_setup(void)
{
! prepend_class = class_new(gensym("cxc.prepend"), (t_newmethod)prepend_new, 0,
sizeof(t_prepend), 0,A_DEFSYM,NULL);
class_addlist(prepend_class, prepend_list);
--- 112,116 ----
void prepend_setup(void)
{
! prepend_class = class_new(gensym("cxc_prepend"), (t_newmethod)prepend_new, 0,
sizeof(t_prepend), 0,A_DEFSYM,NULL);
class_addlist(prepend_class, prepend_list);
Index: README
===================================================================
RCS file: /cvsroot/pure-data/externals/cxc/README,v
retrieving revision 1.4
retrieving revision 1.5
diff -C2 -d -r1.4 -r1.5
*** README 1 Mar 2003 21:10:10 -0000 1.4
--- README 19 May 2004 01:29:15 -0000 1.5
***************
*** 50,57 ****
same as above
! cxc.prepend:
prepend stuff with another symbol
! cxc.split:
split incoming string at specified delimiter
--- 50,57 ----
same as above
! cxc_prepend:
prepend stuff with another symbol
! cxc_split:
split incoming string at specified delimiter
Index: split.c
===================================================================
RCS file: /cvsroot/pure-data/externals/cxc/split.c,v
retrieving revision 1.3
retrieving revision 1.4
diff -C2 -d -r1.3 -r1.4
*** split.c 1 Mar 2003 18:37:24 -0000 1.3
--- split.c 19 May 2004 01:29:15 -0000 1.4
***************
*** 144,148 ****
x->x_splitter = s;
else
! x->x_splitter = gensym("cxc.split");
return (x);
}
--- 144,148 ----
x->x_splitter = s;
else
! x->x_splitter = gensym("cxc_split");
return (x);
}
***************
*** 166,170 ****
void split_setup(void)
{
! split_class = class_new(gensym("cxc.split"), (t_newmethod)split_new, 0,
sizeof(t_split), 0,A_DEFSYM,NULL);
// class_addlist(split_class, split_list);
--- 166,170 ----
void split_setup(void)
{
! split_class = class_new(gensym("cxc_split"), (t_newmethod)split_new, 0,
sizeof(t_split), 0,A_DEFSYM,NULL);
// class_addlist(split_class, split_list);