From eff932d9e16b6eceb2360a71803e03b2e9d9f1e7 Mon Sep 17 00:00:00 2001 From: Hans-Christoph Steiner Date: Wed, 19 May 2004 01:29:15 +0000 Subject: renamed cxc.*.c to cxc_*.c so that they can be built as individual objects svn path=/trunk/externals/cxc/; revision=1750 --- README | 4 ++-- prepend.c | 6 +++--- split.c | 4 ++-- 3 files changed, 7 insertions(+), 7 deletions(-) diff --git a/README b/README index e353408..80c9f86 100644 --- a/README +++ b/README @@ -49,10 +49,10 @@ cloned out of markex so i dont need to load gem to have these reson: same as above -cxc.prepend: +cxc_prepend: prepend stuff with another symbol -cxc.split: +cxc_split: split incoming string at specified delimiter utime: diff --git a/prepend.c b/prepend.c index bc6313a..8792ec0 100644 --- a/prepend.c +++ b/prepend.c @@ -7,7 +7,7 @@ /* this is taken from ggee, where the file was hanging around but the object was not 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 + anyhow, i ll just rename it cxc_prepend */ /* ------------------------ prepend ----------------------------- */ @@ -100,7 +100,7 @@ static void *prepend_new(t_symbol* s) if (s != &s_) x->x_s = s; else - x->x_s = gensym("cxc.prepend"); + x->x_s = gensym("cxc_prepend"); return (x); } @@ -111,7 +111,7 @@ static void prepend_set(t_prepend *x, t_symbol *s) void prepend_setup(void) { - prepend_class = class_new(gensym("cxc.prepend"), (t_newmethod)prepend_new, 0, + 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); class_addanything(prepend_class,prepend_anything); diff --git a/split.c b/split.c index 08dcca2..11d01c0 100644 --- a/split.c +++ b/split.c @@ -143,7 +143,7 @@ static void *split_new(t_symbol* s) if (s != &s_) x->x_splitter = s; else - x->x_splitter = gensym("cxc.split"); + x->x_splitter = gensym("cxc_split"); return (x); } @@ -165,7 +165,7 @@ static void split_set(t_split *x, t_symbol *s) void split_setup(void) { - split_class = class_new(gensym("cxc.split"), (t_newmethod)split_new, 0, + 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); class_addanything(split_class,split_anything); -- cgit v1.2.1