diff options
author | Hans-Christoph Steiner <eighthave@users.sourceforge.net> | 2005-11-10 22:15:07 +0000 |
---|---|---|
committer | IOhannes m zmölnig <zmoelnig@iem.at> | 2015-10-14 13:53:22 +0200 |
commit | ff6b00b82c7f3f1a1efae7ba00894604aa70a60d (patch) | |
tree | 16835feaeacf7f33da08e964fe72eb24d09f2657 /src/iso.c | |
parent | 7fc71ea46f7424a15cf39d0be2b9525fa6d5a1f0 (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/iso.c')
-rw-r--r-- | src/iso.c | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -194,7 +194,7 @@ void iso_setup(void) { class_addmethod(iso_class, (t_method)iso_hook, gensym("hook"), A_FLOAT, 0);
class_addbang(iso_class, iso_bang);
class_addlist(iso_class, iso_pitch);
- class_sethelpsymbol(iso_class, gensym("help-iso.pd"));
+
post(version);
}
#else
@@ -214,6 +214,6 @@ void maxlib_iso_setup(void) { class_addmethod(iso_class, (t_method)iso_hook, gensym("hook"), A_FLOAT, 0);
class_addbang(iso_class, iso_bang);
class_addlist(iso_class, iso_pitch);
- class_sethelpsymbol(iso_class, gensym("maxlib/help-iso.pd"));
+ class_sethelpsymbol(iso_class, gensym("maxlib/iso-help.pd"));
}
#endif
|