diff options
author | Hans-Christoph Steiner <eighthave@users.sourceforge.net> | 2005-12-02 03:16:55 +0000 |
---|---|---|
committer | Hans-Christoph Steiner <eighthave@users.sourceforge.net> | 2005-12-02 03:16:55 +0000 |
commit | 35b3fe4d7c9024a29218413aa515c6510cc4c06a (patch) | |
tree | 1fbb50efc0a34a00d3a0c671643744273137efac /send13.c | |
parent | 5c1fcb168dde7299ff173372f100a68c88771f72 (diff) |
removed class_sethelpsymbol() to make help system more flexible. In most cases, its unneeded anyway
svn path=/trunk/externals/ext13/; revision=4101
Diffstat (limited to 'send13.c')
-rw-r--r-- | send13.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -65,7 +65,7 @@ void send13_setup(void) send13_class = class_new(gensym("send13"), (t_newmethod)send13_new, 0, sizeof(t_send13), 0, A_DEFSYM, 0); class_addcreator((t_newmethod)send13_new, gensym("s13"), A_DEFSYM, 0); - class_sethelpsymbol(send13_class, gensym("ext13")); + class_addbang(send13_class, send13_bang); class_addfloat(send13_class, send13_float); class_addsymbol(send13_class, send13_symbol); |