From 64fdb009695828b788fce074135b20a5e52c5fc4 Mon Sep 17 00:00:00 2001 From: Thomas Grill Date: Tue, 23 Sep 2003 00:21:28 +0000 Subject: imported version 0.37-0 svn path=/trunk/; revision=1016 --- pd/src/m_pd.c | 7 +++++++ 1 file changed, 7 insertions(+) (limited to 'pd/src/m_pd.c') diff --git a/pd/src/m_pd.c b/pd/src/m_pd.c index 8192c7e4..7ae53082 100644 --- a/pd/src/m_pd.c +++ b/pd/src/m_pd.c @@ -39,6 +39,13 @@ void pd_free(t_pd *x) if (c->c_size) t_freebytes(x, c->c_size); } +void gobj_save(t_gobj *x, t_binbuf *b) +{ + t_class *c = x->g_pd; + if (c->c_savefn) + (c->c_savefn)(x, b); +} + /* deal with several objects bound to the same symbol. If more than one, we actually bind a collection object to the symbol, which forwards messages sent to the symbol. */ -- cgit v1.2.1