From 4eb4f5fb2ed635a88f1378bf7dd061bcf4965fa1 Mon Sep 17 00:00:00 2001 From: Ivica Ico Bukvic <ico@vt.edu> Date: Tue, 8 Sep 2020 15:15:53 -0400 Subject: [PATCH] Gatom in append mode retains data coming into its inlet * This is a missed case scenario that applies only to symbol gatom when it receives a symbol that sets its value via its inlet --- pd/src/g_text.c | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/pd/src/g_text.c b/pd/src/g_text.c index 878599946..daefd4751 100644 --- a/pd/src/g_text.c +++ b/pd/src/g_text.c @@ -957,7 +957,12 @@ static void gatom_set(t_gatom *x, t_symbol *s, int argc, t_atom *argv) gatom_retext(x, 1, 0); x->a_atomold = x->a_atom; } - x->a_buf[0] = 0; + if (x->a_atom.a_type == A_FLOAT) + { + x->a_buf[0] = 0; + } else { + strcpy(x->a_buf, x->a_atom.a_w.w_symbol->s_name); + } } static void gatom_bang(t_gatom *x) -- GitLab