fixed execution order bug that was causing the first two frame numbers to output...
[puredata.git] / packages / patches / use_individual_help_patches_for_midi-0.41.0-test04.patch
blob2f03b82869eb0947f7ba1416f80f340b03e449e2
1 Index: x_midi.c
2 ===================================================================
3 RCS file: /cvsroot/pure-data/pd/src/x_midi.c,v
4 retrieving revision 1.2
5 retrieving revision 1.2.10.1
6 diff -u -w -r1.2 -r1.2.10.1
7 --- x_midi.c 6 Sep 2004 20:20:36 -0000 1.2
8 +++ x_midi.c 14 May 2007 18:31:31 -0000 1.2.10.1
9 @@ -160,7 +160,6 @@
10 notein_class = class_new(gensym("notein"), (t_newmethod)notein_new,
11 (t_method)notein_free, sizeof(t_notein), CLASS_NOINLET, A_DEFFLOAT, 0);
12 class_addlist(notein_class, notein_list);
13 - class_sethelpsymbol(notein_class, gensym("midi"));
14 notein_sym = gensym("#notein");
17 @@ -234,7 +233,6 @@
18 (t_method)ctlin_free, sizeof(t_ctlin),
19 CLASS_NOINLET, A_GIMME, 0);
20 class_addlist(ctlin_class, ctlin_list);
21 - class_sethelpsymbol(ctlin_class, gensym("midi"));
22 ctlin_sym = gensym("#ctlin");
25 @@ -301,7 +299,6 @@
26 (t_method)pgmin_free, sizeof(t_pgmin),
27 CLASS_NOINLET, A_DEFFLOAT, 0);
28 class_addlist(pgmin_class, pgmin_list);
29 - class_sethelpsymbol(pgmin_class, gensym("midi"));
30 pgmin_sym = gensym("#pgmin");
33 @@ -366,7 +363,6 @@
34 bendin_class = class_new(gensym("bendin"), (t_newmethod)bendin_new,
35 (t_method)bendin_free, sizeof(t_bendin), CLASS_NOINLET, A_DEFFLOAT, 0);
36 class_addlist(bendin_class, bendin_list);
37 - class_sethelpsymbol(bendin_class, gensym("midi"));
38 bendin_sym = gensym("#bendin");
41 @@ -725,7 +721,6 @@
42 noteout_class = class_new(gensym("noteout"), (t_newmethod)noteout_new, 0,
43 sizeof(t_noteout), 0, A_DEFFLOAT, 0);
44 class_addfloat(noteout_class, noteout_float);
45 - class_sethelpsymbol(noteout_class, gensym("midi"));
49 @@ -765,7 +760,6 @@
50 ctlout_class = class_new(gensym("ctlout"), (t_newmethod)ctlout_new, 0,
51 sizeof(t_ctlout), 0, A_DEFFLOAT, A_DEFFLOAT, 0);
52 class_addfloat(ctlout_class, ctlout_float);
53 - class_sethelpsymbol(ctlout_class, gensym("midi"));
57 @@ -805,7 +799,6 @@
58 pgmout_class = class_new(gensym("pgmout"), (t_newmethod)pgmout_new, 0,
59 sizeof(t_pgmout), 0, A_DEFFLOAT, 0);
60 class_addfloat(pgmout_class, pgmout_float);
61 - class_sethelpsymbol(pgmout_class, gensym("midi"));
65 @@ -842,7 +835,6 @@
66 bendout_class = class_new(gensym("bendout"), (t_newmethod)bendout_new, 0,
67 sizeof(t_bendout), 0, A_DEFFLOAT, 0);
68 class_addfloat(bendout_class, bendout_float);
69 - class_sethelpsymbol(bendout_class, gensym("midi"));
72 /* -------------------------- touch -------------------------- */