aboutsummaryrefslogtreecommitdiff
path: root/split.c
diff options
context:
space:
mode:
authorHans-Christoph Steiner <eighthave@users.sourceforge.net>2004-05-19 01:29:15 +0000
committerHans-Christoph Steiner <eighthave@users.sourceforge.net>2004-05-19 01:29:15 +0000
commiteff932d9e16b6eceb2360a71803e03b2e9d9f1e7 (patch)
treeb50fddadf6763a5453c37405f1dd6fe6a9a3fe19 /split.c
parent1582d3a878a2aab1a09fd514b94a8f696bf29b64 (diff)
renamed cxc.*.c to cxc_*.c so that they can be built as individual objects
svn path=/trunk/externals/cxc/; revision=1750
Diffstat (limited to 'split.c')
-rw-r--r--split.c4
1 files changed, 2 insertions, 2 deletions
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);