diff --git a/pd/src/g_scalar.c b/pd/src/g_scalar.c index 9963a79fe1fc42ee6c6c699a4702d00f004a0297..3f1ace699b6af76aa61271f06de31c9860537a27 100644 --- a/pd/src/g_scalar.c +++ b/pd/src/g_scalar.c @@ -103,6 +103,11 @@ void word_init(t_word *data, t_template *template, t_gpointer *gp) post("eval'd a canvas with addy x%lx", (long unsigned int) wp->w_list); } + else if (type == DT_TEXT) + { + // Miller's [text] object addition + wp->w_binbuf = binbuf_new(); + } } } @@ -167,6 +172,8 @@ void word_free(t_word *wp, t_template *template) array_free(wp[i].w_array); else if (dt->ds_type == DT_LIST) canvas_free(wp[i].w_list); + else if (dt->ds_type == DT_TEXT) + binbuf_free(wp[i].w_binbuf); } }