aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBryan Jurish <mukau@users.sourceforge.net>2008-03-28 11:49:00 +0000
committerBryan Jurish <mukau@users.sourceforge.net>2008-03-28 11:49:00 +0000
commita6e213425ad08e4104a8368a1e3c6517260a6bf1 (patch)
tree04ff1d260ed5e48f7c4c6533ce1d7a724f08a98e
parent36628a5c9a9610af6e3d7475d777fadee6eae496 (diff)
+ removed class_sethelpsymbol() calls
svn path=/trunk/externals/moocow/pdstring/; revision=9636
-rw-r--r--src/any2string.c4
-rw-r--r--src/pdstring.c4
-rw-r--r--src/string2any.c4
3 files changed, 6 insertions, 6 deletions
diff --git a/src/any2string.c b/src/any2string.c
index 754f2be..9d688f7 100644
--- a/src/any2string.c
+++ b/src/any2string.c
@@ -4,7 +4,7 @@
* Author: Bryan Jurish <moocow@ling.uni-potsdam.de>
* Description: convert pd messages to strings (dynamic allocation)
*
- * Copyright (c) 2004 - 2007 Bryan Jurish.
+ * Copyright (c) 2004 - 2008 Bryan Jurish.
*
* For information on usage and redistribution, and for a DISCLAIMER OF ALL
* WARRANTIES, see the file "COPYING", in this distribution.
@@ -222,7 +222,7 @@ void any2string_setup_guts(void)
//-- help symbol
- class_sethelpsymbol(any2string_class, gensym("any2string-help.pd"));
+ //class_sethelpsymbol(any2string_class, gensym("any2string-help.pd")); //-- breaks pd-extended help lookup
}
/*--------------------------------------------------------------------
diff --git a/src/pdstring.c b/src/pdstring.c
index 37bd4ff..cf0bd6e 100644
--- a/src/pdstring.c
+++ b/src/pdstring.c
@@ -4,7 +4,7 @@
* Author: Bryan Jurish <moocow@ling.uni-potsdam.de>
* Description: pd string conversions : library
*
- * Copyright (c) 2004-2006 Bryan Jurish.
+ * Copyright (c) 2004-2008 Bryan Jurish.
*
* For information on usage and redistribution, and for a DISCLAIMER OF ALL
* WARRANTIES, see the file "COPYING", in this distribution.
@@ -104,5 +104,5 @@ void pdstring_setup(void)
class_addmethod(pdstring_class, (t_method)pdstring_help, gensym("help"), A_NULL);
//-- help symbol
- class_sethelpsymbol(pdstring_class, gensym("pdstring-help.pd"));
+ //class_sethelpsymbol(pdstring_class, gensym("pdstring-help.pd")); //-- breaks pd-extended help lookup
}
diff --git a/src/string2any.c b/src/string2any.c
index a79dc0e..1ead4cf 100644
--- a/src/string2any.c
+++ b/src/string2any.c
@@ -4,7 +4,7 @@
* Author: Bryan Jurish <moocow@ling.uni-potsdam.de>
* Description: convert strings to pd messages
*
- * Copyright (c) 2004 Bryan Jurish.
+ * Copyright (c) 2004-2008 Bryan Jurish.
*
* For information on usage and redistribution, and for a DISCLAIMER OF ALL
* WARRANTIES, see the file "COPYING", in this distribution.
@@ -233,7 +233,7 @@ void string2any_setup_guts(void)
//-- help symbol
- class_sethelpsymbol(string2any_class, gensym("string2any-help.pd"));
+ //class_sethelpsymbol(string2any_class, gensym("string2any-help.pd")); //-- breaks pd-extended help lookup
}
/*--------------------------------------------------------------------