aboutsummaryrefslogtreecommitdiff
path: root/pddp
diff options
context:
space:
mode:
authorHans-Christoph Steiner <eighthave@users.sourceforge.net>2010-01-04 05:56:15 +0000
committerHans-Christoph Steiner <eighthave@users.sourceforge.net>2010-01-04 05:56:15 +0000
commit558a2ba5633e0f51c08118033b9be409abf06c33 (patch)
treec245a703c3a117e5acf83ca4cf3a3b99899eb555 /pddp
parent26a28e681d7baa0b6e41e44deee9e1b9416c64b1 (diff)
added {} quoting on names when passing them to Tcl procs
svn path=/trunk/externals/miXed/; revision=12881
Diffstat (limited to 'pddp')
-rw-r--r--pddp/pddplink.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/pddp/pddplink.c b/pddp/pddplink.c
index 466be8d..1fa1a20 100644
--- a/pddp/pddplink.c
+++ b/pddp/pddplink.c
@@ -179,7 +179,7 @@ static void pddplink_click(t_pddplink *x, t_floatarg xpos, t_floatarg ypos,
typedmess(pddplink_pdtarget(x), gensym("open"), 2, x->x_openargs);
break;
case PDDPLINK_HTML:
- sys_vgui("after 0 {::pddp::cliOpen %s}\n", x->x_ulink->s_name);
+ sys_vgui("after 0 {::pddp::cliOpen {%s}}\n", x->x_ulink->s_name);
break;
}
x->x_ishit = 0;
@@ -367,7 +367,7 @@ static void *pddplink_new(t_symbol *s, int ac, t_atom *av)
}
}
if (x->x_linktype == PDDPLINK_HTML)
- sys_vgui("after 0 {::pddp::srvUse %s}\n", x->x_dirsym->s_name);
+ sys_vgui("after 0 {::pddp::srvUse {%s}}\n", x->x_dirsym->s_name);
return (x);
}