aboutsummaryrefslogtreecommitdiff
path: root/src/index.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/index.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/index.c')
-rw-r--r--src/index.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/index.c b/src/index.c
index 15d3a2b..53980d0 100644
--- a/src/index.c
+++ b/src/index.c
@@ -52,7 +52,7 @@ typedef struct _index
} t_index;
/************************************
- * helpers
+ * index_helpers
*/
@@ -320,7 +320,7 @@ static void index_free(t_index *x)
}
-static void helper(t_index *x)
+static void index_helper(t_index *x)
{
post("\n%c index :: index symbols to indices", HEARTSYMBOL);
post("<symbol> : look up the <symbol> in the index and return it's index\n"
@@ -364,7 +364,7 @@ void index_setup(void)
class_addmethod(index_class, (t_method)index_compact, gensym("compact"), 0);
class_addmethod(index_class, (t_method)index_dump, gensym("dump"), 0);
- class_addmethod(index_class, (t_method)helper, gensym("help"), 0);
+ class_addmethod(index_class, (t_method)index_helper, gensym("help"), 0);
class_sethelpsymbol(index_class, gensym("zexy/index"));
zexy_register("index");
}