From eb339fbbb92b5bc76823e81115e5057a845fccf7 Mon Sep 17 00:00:00 2001
From: Jonathan Wilkes <jon.w.wilkes@gmail.com>
Date: Fri, 4 Sep 2015 11:29:55 -0400
Subject: [PATCH] postlude: add A_CANT to dsp method

---
 externals/postlude/flib/src/bmax~.c          | 2 +-
 externals/postlude/flib/src/cc~.c            | 2 +-
 externals/postlude/flib/src/clean~.c         | 2 +-
 externals/postlude/flib/src/cross~.c         | 2 +-
 externals/postlude/flib/src/ha~.c            | 2 +-
 externals/postlude/flib/src/hca~.c           | 2 +-
 externals/postlude/flib/src/irreg~.c         | 2 +-
 externals/postlude/flib/src/melf~.c          | 2 +-
 externals/postlude/flib/src/mspec~.c         | 2 +-
 externals/postlude/flib/src/peak~.c          | 2 +-
 externals/postlude/flib/src/pp~.c            | 2 +-
 externals/postlude/flib/src/pspec~.c         | 2 +-
 externals/postlude/flib/src/sc~.c            | 2 +-
 externals/postlude/flib/src/sfm~.c           | 2 +-
 externals/postlude/flib/src/ss~.c            | 2 +-
 externals/postlude/flib/src/trist~.c         | 2 +-
 externals/postlude/flib/src/wdv~.c           | 2 +-
 externals/postlude/pluginhost~/pluginhost~.c | 2 +-
 18 files changed, 18 insertions(+), 18 deletions(-)

diff --git a/externals/postlude/flib/src/bmax~.c b/externals/postlude/flib/src/bmax~.c
index e3bb5a157..26b93dbfc 100644
--- a/externals/postlude/flib/src/bmax~.c
+++ b/externals/postlude/flib/src/bmax~.c
@@ -97,7 +97,7 @@ void bmax_tilde_setup(void) {
         CLASS_DEFAULT, A_DEFFLOAT, 0);
 
   class_addmethod(bmax_class,
-        (t_method)bmax_dsp, gensym("dsp"), 0);
+        (t_method)bmax_dsp, gensym("dsp"), A_CANT, 0);
   CLASS_MAINSIGNALIN(bmax_class, t_bmax,f);
   class_sethelpsymbol(bmax_class, gensym("help-flib"));
 }
diff --git a/externals/postlude/flib/src/cc~.c b/externals/postlude/flib/src/cc~.c
index 4c58abe58..88ce67e59 100644
--- a/externals/postlude/flib/src/cc~.c
+++ b/externals/postlude/flib/src/cc~.c
@@ -300,7 +300,7 @@ void cc_tilde_setup(void) {
 
     class_addbang(cc_class, (t_method)cc_bang);
     class_addmethod(cc_class,
-	    (t_method)cc_dsp, gensym("dsp"), 0);
+	    (t_method)cc_dsp, gensym("dsp"), A_CANT, 0);
     CLASS_MAINSIGNALIN(cc_class, t_cc,f);
     class_sethelpsymbol(cc_class, gensym("help-flib"));
 }
diff --git a/externals/postlude/flib/src/clean~.c b/externals/postlude/flib/src/clean~.c
index 0133e1897..33513b8fb 100644
--- a/externals/postlude/flib/src/clean~.c
+++ b/externals/postlude/flib/src/clean~.c
@@ -101,6 +101,6 @@ void clean_tilde_setup(void) {
   CLASS_MAINSIGNALIN(clean_class, t_clean,f);
   class_addfloat(clean_class, clean_float);
   class_addmethod(clean_class,
-        (t_method)clean_dsp, gensym("dsp"), 0);
+        (t_method)clean_dsp, gensym("dsp"), A_CANT, 0);
   class_sethelpsymbol(clean_class, gensym("help-flib"));
 }
diff --git a/externals/postlude/flib/src/cross~.c b/externals/postlude/flib/src/cross~.c
index 2d06d9bab..dd94bea01 100644
--- a/externals/postlude/flib/src/cross~.c
+++ b/externals/postlude/flib/src/cross~.c
@@ -193,7 +193,7 @@ void cross_tilde_setup(void) {
 	    CLASS_DEFAULT, A_GIMME, 0);
 
     class_addmethod(cross_class,
-	    (t_method)cross_dsp, gensym("dsp"), 0);
+	    (t_method)cross_dsp, gensym("dsp"), A_CANT, 0);
     CLASS_MAINSIGNALIN(cross_class, t_cross,f);
     class_sethelpsymbol(cross_class, gensym("help-flib"));
 }
diff --git a/externals/postlude/flib/src/ha~.c b/externals/postlude/flib/src/ha~.c
index 39a46d67f..aa70190bf 100644
--- a/externals/postlude/flib/src/ha~.c
+++ b/externals/postlude/flib/src/ha~.c
@@ -76,7 +76,7 @@ void hca_tilde_setup(void) {
         CLASS_DEFAULT, A_DEFFLOAT, 0);
 
   class_addmethod(hca_class,
-        (t_method)hca_dsp, gensym("dsp"), 0);
+        (t_method)hca_dsp, gensym("dsp"), A_CANT, 0);
   CLASS_MAINSIGNALIN(hca_class, t_hca,f);
 
   class_addfloat(hca_class, hca_float)
diff --git a/externals/postlude/flib/src/hca~.c b/externals/postlude/flib/src/hca~.c
index 2317324c0..e551879ba 100644
--- a/externals/postlude/flib/src/hca~.c
+++ b/externals/postlude/flib/src/hca~.c
@@ -100,7 +100,7 @@ void hca_tilde_setup(void) {
         CLASS_DEFAULT, A_DEFFLOAT, 0);
 
   class_addmethod(hca_class,
-        (t_method)hca_dsp, gensym("dsp"), 0);
+        (t_method)hca_dsp, gensym("dsp"), A_CANT, 0);
  
   CLASS_MAINSIGNALIN(hca_class, t_hca,f);
   
diff --git a/externals/postlude/flib/src/irreg~.c b/externals/postlude/flib/src/irreg~.c
index 2b17828fb..3733997cd 100644
--- a/externals/postlude/flib/src/irreg~.c
+++ b/externals/postlude/flib/src/irreg~.c
@@ -64,7 +64,7 @@ void irreg_tilde_setup(void) {
         CLASS_DEFAULT,0);
 
   class_addmethod(irreg_class,
-        (t_method)irreg_dsp, gensym("dsp"), 0);
+        (t_method)irreg_dsp, gensym("dsp"), A_CANT, 0);
   CLASS_MAINSIGNALIN(irreg_class, t_irreg,f);
   class_sethelpsymbol(irreg_class, gensym("help-flib"));
 }
diff --git a/externals/postlude/flib/src/melf~.c b/externals/postlude/flib/src/melf~.c
index 06947dcaf..ebe4a2226 100644
--- a/externals/postlude/flib/src/melf~.c
+++ b/externals/postlude/flib/src/melf~.c
@@ -212,7 +212,7 @@ void melf_tilde_setup(void) {
         CLASS_DEFAULT, A_GIMME, 0);
 
   class_addmethod(melf_class,
-        (t_method)melf_dsp, gensym("dsp"), 0);
+        (t_method)melf_dsp, gensym("dsp"), A_CANT, 0);
   CLASS_MAINSIGNALIN(melf_class, t_melf,f);
   class_sethelpsymbol(melf_class, gensym("help-mfcc"));
 }
diff --git a/externals/postlude/flib/src/mspec~.c b/externals/postlude/flib/src/mspec~.c
index 02000cd21..7538f08e9 100644
--- a/externals/postlude/flib/src/mspec~.c
+++ b/externals/postlude/flib/src/mspec~.c
@@ -83,7 +83,7 @@ void mspec_tilde_setup(void) {
         CLASS_DEFAULT, A_DEFFLOAT, 0);
 
   class_addmethod(mspec_class,
-        (t_method)mspec_dsp, gensym("dsp"), 0);
+        (t_method)mspec_dsp, gensym("dsp"), A_CANT, 0);
   CLASS_MAINSIGNALIN(mspec_class, t_mspec,f);
   class_sethelpsymbol(mspec_class, gensym("help-flib"));
 }
diff --git a/externals/postlude/flib/src/peak~.c b/externals/postlude/flib/src/peak~.c
index fdc1e6add..02107ace7 100644
--- a/externals/postlude/flib/src/peak~.c
+++ b/externals/postlude/flib/src/peak~.c
@@ -122,7 +122,7 @@ void peak_tilde_setup(void) {
         (t_method)peak_free, sizeof(t_peak),
         CLASS_DEFAULT, A_GIMME, 0);
 
-	class_addmethod(peak_class, (t_method)peak_dsp, gensym("dsp"), 0);
+	class_addmethod(peak_class, (t_method)peak_dsp, gensym("dsp"), A_CANT, 0);
     CLASS_MAINSIGNALIN(peak_class, t_peak,f);
 	class_sethelpsymbol(peak_class, gensym("help-flib"));
 	
diff --git a/externals/postlude/flib/src/pp~.c b/externals/postlude/flib/src/pp~.c
index 862a51e8f..62eba15db 100644
--- a/externals/postlude/flib/src/pp~.c
+++ b/externals/postlude/flib/src/pp~.c
@@ -64,7 +64,7 @@ void pp_tilde_setup(void) {
 
   class_addcreator((t_newmethod)pp_new, gensym("++~"), A_DEFFLOAT, 0);
   class_addmethod(pp_class,
-        (t_method)pp_dsp, gensym("dsp"), 0);
+        (t_method)pp_dsp, gensym("dsp"), A_CANT, 0);
   CLASS_MAINSIGNALIN(pp_class, t_pp,f);
   class_sethelpsymbol(pp_class, gensym("help-flib"));
 }
diff --git a/externals/postlude/flib/src/pspec~.c b/externals/postlude/flib/src/pspec~.c
index 80512c504..76da33736 100644
--- a/externals/postlude/flib/src/pspec~.c
+++ b/externals/postlude/flib/src/pspec~.c
@@ -71,7 +71,7 @@ void pspec_tilde_setup(void) {
         CLASS_DEFAULT, 0);
 
   class_addmethod(pspec_class,
-        (t_method)pspec_dsp, gensym("dsp"), 0);
+        (t_method)pspec_dsp, gensym("dsp"), A_CANT, 0);
   CLASS_MAINSIGNALIN(pspec_class, t_pspec,f);
   class_sethelpsymbol(pspec_class, gensym("help-flib"));
 }
diff --git a/externals/postlude/flib/src/sc~.c b/externals/postlude/flib/src/sc~.c
index 47c69f52e..aa5ec5c87 100644
--- a/externals/postlude/flib/src/sc~.c
+++ b/externals/postlude/flib/src/sc~.c
@@ -71,7 +71,7 @@ void sc_tilde_setup(void) {
         A_DEFFLOAT, 0);
 
   class_addmethod(sc_class,
-        (t_method)sc_dsp, gensym("dsp"), 0);
+        (t_method)sc_dsp, gensym("dsp"), A_CANT, 0);
   CLASS_MAINSIGNALIN(sc_class, t_sc,f);
   class_sethelpsymbol(sc_class, gensym("help-flib"));
 }
diff --git a/externals/postlude/flib/src/sfm~.c b/externals/postlude/flib/src/sfm~.c
index f2fbfddd8..ca19ca388 100644
--- a/externals/postlude/flib/src/sfm~.c
+++ b/externals/postlude/flib/src/sfm~.c
@@ -69,7 +69,7 @@ void sfm_tilde_setup(void) {
         CLASS_DEFAULT,0);
 
   class_addmethod(sfm_class,
-        (t_method)sfm_dsp, gensym("dsp"), 0);
+        (t_method)sfm_dsp, gensym("dsp"), A_CANT, 0);
   CLASS_MAINSIGNALIN(sfm_class, t_sfm,f);
   class_sethelpsymbol(sfm_class, gensym("help-flib"));
 }
diff --git a/externals/postlude/flib/src/ss~.c b/externals/postlude/flib/src/ss~.c
index 83baf827b..a510f1c5a 100644
--- a/externals/postlude/flib/src/ss~.c
+++ b/externals/postlude/flib/src/ss~.c
@@ -65,7 +65,7 @@ void ss_tilde_setup(void) {
         CLASS_DEFAULT,0);
 
   class_addmethod(ss_class,
-        (t_method)ss_dsp, gensym("dsp"), 0);
+        (t_method)ss_dsp, gensym("dsp"), A_CANT, 0);
   CLASS_MAINSIGNALIN(ss_class, t_ss,f);
   class_sethelpsymbol(ss_class, gensym("help-flib"));
 }
diff --git a/externals/postlude/flib/src/trist~.c b/externals/postlude/flib/src/trist~.c
index 93fd3b9b8..b04c8bb72 100644
--- a/externals/postlude/flib/src/trist~.c
+++ b/externals/postlude/flib/src/trist~.c
@@ -86,7 +86,7 @@ void trist_tilde_setup(void) {
         CLASS_DEFAULT, A_DEFSYMBOL, 0);
 
   class_addmethod(trist_class,
-        (t_method)trist_dsp, gensym("dsp"), 0);
+        (t_method)trist_dsp, gensym("dsp"), A_CANT, 0);
   CLASS_MAINSIGNALIN(trist_class, t_trist,f);
   class_sethelpsymbol(trist_class, gensym("help-flib"));
 }
diff --git a/externals/postlude/flib/src/wdv~.c b/externals/postlude/flib/src/wdv~.c
index dfca9fd9f..22ca536ea 100644
--- a/externals/postlude/flib/src/wdv~.c
+++ b/externals/postlude/flib/src/wdv~.c
@@ -228,7 +228,7 @@ void wdv_tilde_setup(void) {
         0, sizeof(t_wdv),
         CLASS_DEFAULT, A_GIMME, 0); 
   
-  class_addmethod(wdv_class, (t_method)wdv_dsp, gensym("dsp"), 0); 
+  class_addmethod(wdv_class, (t_method)wdv_dsp, gensym("dsp"), A_CANT, 0); 
   CLASS_MAINSIGNALIN(wdv_class, t_wdv,f); 
   class_sethelpsymbol(wdv_class, gensym("help-flib"));
 }
diff --git a/externals/postlude/pluginhost~/pluginhost~.c b/externals/postlude/pluginhost~/pluginhost~.c
index c0c9bd90e..fb6279a9c 100644
--- a/externals/postlude/pluginhost~/pluginhost~.c
+++ b/externals/postlude/pluginhost~/pluginhost~.c
@@ -66,7 +66,7 @@ void pluginhost_tilde_setup(void)
             (t_method)ph_free, sizeof(ph), 0, A_GIMME, 0);
     class_addlist(ph_class, handle_pd_list);
     class_addbang(ph_class, handle_pd_bang);
-    class_addmethod(ph_class, (t_method)handle_pd_dsp, gensym("dsp"), 0);
+    class_addmethod(ph_class, (t_method)handle_pd_dsp, gensym("dsp"), A_CANT, 0);
     class_addmethod (ph_class,(t_method)handle_pd_info, gensym ("info"), 0);
     class_addmethod(ph_class, (t_method)handle_pd_dssi, 
             gensym("dssi"), A_GIMME, 0);
-- 
GitLab