aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorIOhannes m zmölnig <zmoelnig@users.sourceforge.net>2015-05-05 10:05:07 +0000
committerIOhannes m zmölnig <zmoelnig@users.sourceforge.net>2015-05-05 10:05:07 +0000
commit81b5c288b6e83df3d31ccb380e51f85cba4533b5 (patch)
treed1d2bf57c3d04ef67436651948b168d9c23d3afd
parent236dc6d2f752c4e6050254d81ba75b94c18cfd59 (diff)
Fixed 'bang'-method by appending terminating gui-msgHEADsvn2git-headexternals/hcs
sys_vgui() expects the methods to be terminated (usually by '\n', but ';' works as well) properly by the *caller*. svn path=/trunk/externals/hcs/; revision=17465
-rw-r--r--cursor.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/cursor.c b/cursor.c
index c9e6b1c..f88eaed 100644
--- a/cursor.c
+++ b/cursor.c
@@ -39,7 +39,7 @@ static void cursor_setmethod(t_cursor *x, t_symbol *s, int argc, t_atom *argv)
static void cursor_bang(t_cursor *x)
{
- sys_vgui("pdsend \"%s motion [winfo pointerxy .]\"",
+ sys_vgui("pdsend \"%s motion [winfo pointerxy .]\";\n",
x->receive_symbol->s_name);
}