aboutsummaryrefslogtreecommitdiff
path: root/src/expo.c
diff options
context:
space:
mode:
authorHans-Christoph Steiner <eighthave@users.sourceforge.net>2005-11-10 22:15:07 +0000
committerIOhannes m zmölnig <zmoelnig@iem.at>2015-10-14 13:53:22 +0200
commitff6b00b82c7f3f1a1efae7ba00894604aa70a60d (patch)
tree16835feaeacf7f33da08e964fe72eb24d09f2657 /src/expo.c
parent7fc71ea46f7424a15cf39d0be2b9525fa6d5a1f0 (diff)
switched over the help files to the Pd standard name; removed the explicit helpfile declaration since its not needed and causes problems
svn path=/trunk/externals/maxlib/; revision=3878
Diffstat (limited to 'src/expo.c')
-rw-r--r--src/expo.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/expo.c b/src/expo.c
index 7ba78cb..231a923 100644
--- a/src/expo.c
+++ b/src/expo.c
@@ -71,7 +71,7 @@ void expo_setup(void)
rand_expo_class = class_new(gensym("expo"), (t_newmethod)rand_expo_new, 0,
sizeof(t_rand_expo), 0, A_DEFFLOAT, 0);
class_addbang(rand_expo_class, rand_expo_bang);
- class_sethelpsymbol(rand_expo_class, gensym("help-expo.pd"));
+ class_sethelpsymbol(rand_expo_class, gensym("expo-help.pd"));
post(version);
}
#else
@@ -81,6 +81,6 @@ void maxlib_expo_setup(void)
sizeof(t_rand_expo), 0, A_DEFFLOAT, 0);
class_addbang(rand_expo_class, rand_expo_bang);
class_addcreator((t_newmethod)rand_expo_new, gensym("expo"), A_DEFFLOAT, 0);
- class_sethelpsymbol(rand_expo_class, gensym("maxlib/help-expo.pd"));
+ class_sethelpsymbol(rand_expo_class, gensym("maxlib/expo-help.pd"));
}
#endif