diff options
author | Miller Puckette <millerpuckette@users.sourceforge.net> | 2005-08-19 23:28:03 +0000 |
---|---|---|
committer | Miller Puckette <millerpuckette@users.sourceforge.net> | 2005-08-19 23:28:03 +0000 |
commit | d6a71adae7c90224e2a49f0edcd4fd52fa0a1b30 (patch) | |
tree | 3ff96fa9bd7aceaeb5c832c097788c80a98bee17 /pd/src/g_text.c | |
parent | 8892fb6aabcbfd2c4695c154c22751b5fe5c9004 (diff) |
Version 0.39-0test5. Bug fixes and more care about closing dirty windows
and quitting.
svn path=/trunk/; revision=3434
Diffstat (limited to 'pd/src/g_text.c')
-rw-r--r-- | pd/src/g_text.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/pd/src/g_text.c b/pd/src/g_text.c index 54b7ac37..ed37ca40 100644 --- a/pd/src/g_text.c +++ b/pd/src/g_text.c @@ -347,10 +347,10 @@ static void message_addsemi(t_message *x) static void message_adddollar(t_message *x, t_floatarg f) { + t_atom a; int n = f; if (n < 0) n = 0; - t_atom a; SETDOLLAR(&a, n); binbuf_add(x->m_text.te_binbuf, 1, &a); glist_retext(x->m_glist, &x->m_text); |