aboutsummaryrefslogtreecommitdiff
path: root/unity.c
diff options
context:
space:
mode:
authorHans-Christoph Steiner <eighthave@users.sourceforge.net>2006-11-20 05:51:53 +0000
committerHans-Christoph Steiner <eighthave@users.sourceforge.net>2006-11-20 05:51:53 +0000
commit5fb78045398126f1fba580217f0ffa62df47890a (patch)
tree0822de97bb9627fe043fbc834177ff3a3a3544ca /unity.c
parentf9920590bc711f8a6aee5d71348c8ef6b42bed70 (diff)
with Ben's permission, I renamed the help files to all be in the standard format and removed the redundant class_sethelpsymbol() functions
svn path=/trunk/externals/bbogart/chaos/; revision=6341
Diffstat (limited to 'unity.c')
-rw-r--r--unity.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/unity.c b/unity.c
index 21ecc6f..63af1dd 100644
--- a/unity.c
+++ b/unity.c
@@ -97,6 +97,7 @@ void unity_setup(void) {
unity_class = class_new(gensym("unity"), (t_newmethod) unity_new, 0, sizeof(unity_struct), 0, A_GIMME, 0);
class_addbang(unity_class, (t_method) calculate);
class_addmethod(unity_class, (t_method) reset, gensym("reset"), A_GIMME, 0);
- class_sethelpsymbol(unity_class, gensym("help-unity.pd"));
+
+
}