From ab177131c123c6283b2e0a4215603d3de07a8b6e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?IOhannes=20m=20zm=C3=B6lnig?= Date: Wed, 19 Dec 2012 08:28:08 +0000 Subject: use hex-escaped helpsymbols so helppatches can be found on the filesystem svn path=/trunk/externals/markex/; revision=16702 --- vector0x2a.c | 2 ++ vector0x2f.c | 14 ++++++-------- 2 files changed, 8 insertions(+), 8 deletions(-) diff --git a/vector0x2a.c b/vector0x2a.c index 3b279cd..32fcf0e 100644 --- a/vector0x2a.c +++ b/vector0x2a.c @@ -55,6 +55,8 @@ static void vectorMult_setup(void) class_addcreator((t_newmethod)vectorMult_new, gensym("v*"), A_DEFFLOAT, 0); class_addmethod(vectorMult_class, (t_method)doVectorMult, &s_list, A_GIMME, A_NULL); + + class_sethelpsymbol(vectorMult_class, gensym("vector0x2a")); } void setup_vector0x2a(void){ diff --git a/vector0x2f.c b/vector0x2f.c index cd3e8e3..55f7444 100644 --- a/vector0x2f.c +++ b/vector0x2f.c @@ -54,14 +54,12 @@ static void vectorDiv_setup(void) sizeof(t_vectorDiv), 0, A_DEFFLOAT, 0); class_addcreator((t_newmethod)vectorDiv_new, gensym("v/"), A_DEFFLOAT, 0); class_addmethod(vectorDiv_class, (t_method)doVectorDiv, - &s_list, A_GIMME, A_NULL); + &s_list, A_GIMME, A_NULL); + class_sethelpsymbol(vectorDiv_class, gensym("vector0x2f")); } -void setup_vector0x2f(void){ - vectorDiv_setup(); -} - -void setup_v0x2f(void){ - vectorDiv_setup(); -} +void setup_vector0x2f(void) { vectorDiv_setup(); } +void vector0x2f_setup(void) { vectorDiv_setup(); } +void setup_v0x2f(void) { vectorDiv_setup(); } +void v0x2f_setup(void) { vectorDiv_setup(); } -- cgit v1.2.1