aboutsummaryrefslogtreecommitdiff
path: root/src/makesymbol.c
diff options
context:
space:
mode:
authorIOhannes m zmölnig <zmoelnig@users.sourceforge.net>2006-01-24 21:17:23 +0000
committerIOhannes m zmölnig <zmoelnig@users.sourceforge.net>2006-01-24 21:17:23 +0000
commit0be9cb9aac9019c0ba8f2709e27b3534f5fcaa51 (patch)
treeba2c4c5c5886271dc309a4bc38855637546e280d /src/makesymbol.c
parentdf9fa297c6f3d9782b82d85a0e4d4bc587df3538 (diff)
made all possible (well, most) functions "static" to not interfere with functions of the same name of other libraries
svn path=/trunk/externals/zexy/; revision=4482
Diffstat (limited to 'src/makesymbol.c')
-rw-r--r--src/makesymbol.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/makesymbol.c b/src/makesymbol.c
index e361c80..3557b57 100644
--- a/src/makesymbol.c
+++ b/src/makesymbol.c
@@ -118,7 +118,7 @@ static void makesymbol_free(t_makesymbol *x)
}
-static void helper(t_makesymbol *x)
+static void makesymbol_helper(t_makesymbol *x)
{
post("\n%c makesymbol :: create a formatted symbol", HEARTSYMBOL);
post("<list of anything>\t: glue up to 10 list-elements to 1 formatted symbol\n"
@@ -140,7 +140,7 @@ void makesymbol_setup(void)
class_addmethod(makesymbol_class, (t_method)reset_mask, gensym("sym1"), A_SYMBOL, 0);
- class_addmethod(makesymbol_class, (t_method)helper, gensym("help"), 0);
+ class_addmethod(makesymbol_class, (t_method)makesymbol_helper, gensym("help"), 0);
class_sethelpsymbol(makesymbol_class, gensym("zexy/makesymbol"));
zexy_register("makesymbol");
}