Update of /cvsroot/pure-data/externals/markex In directory sc8-pr-cvs1:/tmp/cvs-serv11288
Modified Files: alternate.c gem_counter.c invert.c multiselect-help.pd multiselect.c oneshot.c randomF.c strcat.c tripleLine.c tripleRand.c Log Message: cleaned up #if; added multiselect help patch
Index: alternate.c =================================================================== RCS file: /cvsroot/pure-data/externals/markex/alternate.c,v retrieving revision 1.2 retrieving revision 1.3 diff -C2 -d -r1.2 -r1.3 *** alternate.c 2 Oct 2003 03:39:51 -0000 1.2 --- alternate.c 20 Oct 2003 03:35:31 -0000 1.3 *************** *** 74,78 **** gensym("list"), A_GIMME, A_NULL);
! #if PD_MINOR_VERSION < 37 class_sethelpsymbol(alternate_class, gensym("alternate-help.pd")); #endif --- 74,78 ---- gensym("list"), A_GIMME, A_NULL);
! #if PD_MINOR_VERSION < 37 class_sethelpsymbol(alternate_class, gensym("alternate-help.pd")); #endif
Index: gem_counter.c =================================================================== RCS file: /cvsroot/pure-data/externals/markex/gem_counter.c,v retrieving revision 1.2 retrieving revision 1.3 diff -C2 -d -r1.2 -r1.3 *** gem_counter.c 2 Oct 2003 03:39:51 -0000 1.2 --- gem_counter.c 20 Oct 2003 03:35:31 -0000 1.3 *************** *** 225,229 **** class_addmethod(gem_counter_class, (t_method)gem_counter_clear, gensym("clear"), A_GIMME, 0);
! #if PD_MINOR_VERSION < 37 class_sethelpsymbol(gem_counter_class, gensym("gem_counter-help.pd")); #endif --- 225,229 ---- class_addmethod(gem_counter_class, (t_method)gem_counter_clear, gensym("clear"), A_GIMME, 0);
! #if PD_MINOR_VERSION < 37 class_sethelpsymbol(gem_counter_class, gensym("gem_counter-help.pd")); #endif
Index: invert.c =================================================================== RCS file: /cvsroot/pure-data/externals/markex/invert.c,v retrieving revision 1.2 retrieving revision 1.3 diff -C2 -d -r1.2 -r1.3 *** invert.c 2 Oct 2003 03:39:51 -0000 1.2 --- invert.c 20 Oct 2003 03:35:31 -0000 1.3 *************** *** 38,42 **** class_addfloat(invert_class, (t_method)invert_float);
! #if PD_MINOR_VERSION < 37 class_sethelpsymbol(invert_class, gensym("invert-help.pd")); #endif --- 38,42 ---- class_addfloat(invert_class, (t_method)invert_float);
! #if PD_MINOR_VERSION < 37 class_sethelpsymbol(invert_class, gensym("invert-help.pd")); #endif
Index: multiselect-help.pd =================================================================== RCS file: /cvsroot/pure-data/externals/markex/multiselect-help.pd,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -d -r1.1 -r1.2 *** multiselect-help.pd 2 Oct 2003 17:24:43 -0000 1.1 --- multiselect-help.pd 20 Oct 2003 03:35:31 -0000 1.2 *************** *** 1,6 **** ! #N canvas 0 22 454 304 10; #X text 13 14 [multiselect] is part of MarkEx , which was formerly ! in GEM; ! #X obj 171 121 multiselect; ! #X text 29 209 Unfortunately , this is undocumented , so someone ! should write a help page for it!; --- 1,34 ---- ! #N canvas 320 324 484 381 10; #X text 13 14 [multiselect] is part of MarkEx , which was formerly ! in GEM , and was written by Mark Danks.; ! #X text 16 52 [multiselect] is like [select] , except that you send ! a list of numbers into the right inlet to change the selection values ! instead of only one number as with [select].; ! #X text 16 94 If you send more values than there are outlets (i.e. ! , more values that you created the object with) , the extra numbers ! are ignored.; ! #X text 19 291 One use for [multiselect] is to filter notes so that ! they fit a particular scale and the notes in that scale can be changed ! on the fly.; ! #X obj 92 345 select; ! #X text 21 346 see also:; ! #X floatatom 155 209 0 0 0 0 - - -; ! #X msg 219 167 1; ! #X msg 185 167 54; ! #X msg 155 167 23; ! #X obj 155 239 multiselect 23 54 1; ! #X obj 155 259 bng 15 250 50 0 empty empty empty 0 -6 0 8 -262144 -1 ! -1; ! #X floatatom 283 260 5 0 0 0 - - -; ! #X obj 197 259 bng 15 250 50 0 empty empty empty 0 -6 0 8 -262144 -1 ! -1; ! #X obj 240 259 bng 15 250 50 0 empty empty empty 0 -6 0 8 -262144 -1 ! -1; ! #X connect 6 0 10 0; ! #X connect 7 0 6 0; ! #X connect 8 0 6 0; ! #X connect 9 0 6 0; ! #X connect 10 0 11 0; ! #X connect 10 1 13 0; ! #X connect 10 2 14 0; ! #X connect 10 3 12 0;
Index: multiselect.c =================================================================== RCS file: /cvsroot/pure-data/externals/markex/multiselect.c,v retrieving revision 1.2 retrieving revision 1.3 diff -C2 -d -r1.2 -r1.3 *** multiselect.c 2 Oct 2003 03:39:51 -0000 1.2 --- multiselect.c 20 Oct 2003 03:35:31 -0000 1.3 *************** *** 94,98 **** gensym("params"), A_GIMME, A_NULL);
! #if PD_MINOR_VERSION < 37 class_sethelpsymbol(multiselect_class, gensym("multiselect-help.pd")); #endif --- 94,98 ---- gensym("params"), A_GIMME, A_NULL);
! #if PD_MINOR_VERSION < 37 class_sethelpsymbol(multiselect_class, gensym("multiselect-help.pd")); #endif
Index: oneshot.c =================================================================== RCS file: /cvsroot/pure-data/externals/markex/oneshot.c,v retrieving revision 1.2 retrieving revision 1.3 diff -C2 -d -r1.2 -r1.3 *** oneshot.c 2 Oct 2003 03:39:51 -0000 1.2 --- oneshot.c 20 Oct 2003 03:35:32 -0000 1.3 *************** *** 1,3 **** ! /* * Copyright (c) 1997-1999 Mark Danks. * For information on usage and redistribution, and for a DISCLAIMER OF ALL --- 1,3 ---- ! `/* * Copyright (c) 1997-1999 Mark Danks. * For information on usage and redistribution, and for a DISCLAIMER OF ALL *************** *** 57,61 **** class_addbang(oneshot_class, (t_method)oneshot_bang); class_addmethod(oneshot_class, (t_method)oneshot_clear, gensym("clear"), A_NULL); ! #if PD_MINOR_VERSION < 37 class_sethelpsymbol(oneshot_class, gensym("oneshot-help.pd")); #endif --- 57,61 ---- class_addbang(oneshot_class, (t_method)oneshot_bang); class_addmethod(oneshot_class, (t_method)oneshot_clear, gensym("clear"), A_NULL); ! #if PD_MINOR_VERSION < 37 class_sethelpsymbol(oneshot_class, gensym("oneshot-help.pd")); #endif
Index: randomF.c =================================================================== RCS file: /cvsroot/pure-data/externals/markex/randomF.c,v retrieving revision 1.2 retrieving revision 1.3 diff -C2 -d -r1.2 -r1.3 *** randomF.c 2 Oct 2003 03:39:51 -0000 1.2 --- randomF.c 20 Oct 2003 03:35:32 -0000 1.3 *************** *** 58,62 **** class_addbang(randomF_class, (t_method)randomF_bang);
! #if PD_MINOR_VERSION < 37 class_sethelpsymbol(randomF_class, gensym("randomF-help.pd")); #endif --- 58,62 ---- class_addbang(randomF_class, (t_method)randomF_bang);
! #if PD_MINOR_VERSION < 37 class_sethelpsymbol(randomF_class, gensym("randomF-help.pd")); #endif
Index: strcat.c =================================================================== RCS file: /cvsroot/pure-data/externals/markex/strcat.c,v retrieving revision 1.2 retrieving revision 1.3 diff -C2 -d -r1.2 -r1.3 *** strcat.c 2 Oct 2003 03:39:51 -0000 1.2 --- strcat.c 20 Oct 2003 03:35:32 -0000 1.3 *************** *** 60,64 **** class_addbang(strcat_class, (t_method)strcat_bang);
! #if PD_MINOR_VERSION < 37 class_sethelpsymbol(strcat_class, gensym("strcat-help.pd")); #endif --- 60,64 ---- class_addbang(strcat_class, (t_method)strcat_bang);
! #if PD_MINOR_VERSION < 37 class_sethelpsymbol(strcat_class, gensym("strcat-help.pd")); #endif
Index: tripleLine.c =================================================================== RCS file: /cvsroot/pure-data/externals/markex/tripleLine.c,v retrieving revision 1.2 retrieving revision 1.3 diff -C2 -d -r1.2 -r1.3 *** tripleLine.c 2 Oct 2003 03:39:51 -0000 1.2 --- tripleLine.c 20 Oct 2003 03:35:33 -0000 1.3 *************** *** 127,131 **** &s_list, A_GIMME, A_NULL);
! #if PD_MINOR_VERSION < 37 class_sethelpsymbol(tripleLine_class, gensym("tripleLine-help.pd")); #endif --- 127,131 ---- &s_list, A_GIMME, A_NULL);
! #if PD_MINOR_VERSION < 37 class_sethelpsymbol(tripleLine_class, gensym("tripleLine-help.pd")); #endif
Index: tripleRand.c =================================================================== RCS file: /cvsroot/pure-data/externals/markex/tripleRand.c,v retrieving revision 1.2 retrieving revision 1.3 diff -C2 -d -r1.2 -r1.3 *** tripleRand.c 2 Oct 2003 03:39:51 -0000 1.2 --- tripleRand.c 20 Oct 2003 03:35:33 -0000 1.3 *************** *** 104,108 **** gensym("newVals"), A_GIMME, A_NULL);
! #if PD_MINOR_VERSION < 37 class_sethelpsymbol(tripleRand_class, gensym("tripleRand-help.pd")); #endif --- 104,108 ---- gensym("newVals"), A_GIMME, A_NULL);
! #if PD_MINOR_VERSION < 37 class_sethelpsymbol(tripleRand_class, gensym("tripleRand-help.pd")); #endif