diff options
author | Hans-Christoph Steiner <eighthave@users.sourceforge.net> | 2012-01-30 03:44:35 +0000 |
---|---|---|
committer | IOhannes m zmölnig <zmoelnig@iem.at> | 2015-10-14 15:23:30 +0200 |
commit | fb95f8f94849db058a566cde134f52b5f50ddfcf (patch) | |
tree | d57852d45a32f7af4f3d7a1ef2df7de2d7c55a8f | |
parent | 8e1e3abc39ee1f3bc3f827d1e300e90f477ce3da (diff) |
post version message using verbose(0)
svn path=/trunk/externals/unauthorized/; revision=15918
-rw-r--r-- | grid.c | 2 | ||||
-rw-r--r-- | spigot~.c | 2 |
2 files changed, 2 insertions, 2 deletions
@@ -674,7 +674,7 @@ static void grid_free(t_grid *x) void grid_setup(void) { - post ( grid_version ); + verbose(0, grid_version ); grid_class = class_new(gensym("grid"), (t_newmethod)grid_new, (t_method)grid_free, sizeof(t_grid), 0, A_GIMME, 0); class_addmethod(grid_class, (t_method)grid_click, gensym("click"), @@ -65,7 +65,7 @@ static void spigot_set(t_spigot *x, t_float f) void spigot_tilde_setup(void) { - post ( spigot_version ); + verbose(0, spigot_version ); spigot_class = class_new(gensym("spigot~"), (t_newmethod)spigot_new, 0, sizeof(t_spigot), 0, 0); CLASS_MAINSIGNALIN( spigot_class, t_spigot, x_f ); |