diff options
author | Hans-Christoph Steiner <eighthave@users.sourceforge.net> | 2011-09-19 16:54:20 +0000 |
---|---|---|
committer | IOhannes m zmölnig <zmoelnig@iem.at> | 2015-10-14 15:23:30 +0200 |
commit | d07ca5863be9e0ec4c60aae3b4f6023ec027cb71 (patch) | |
tree | 21e59c9f586a90e08d39ac971efb20092d29cc8b /audience~.c | |
parent | 3a49e3e03faad4e3dec1a63d7202d92036fb173d (diff) |
quote the class.tcl file to be loaded using {} so spaces, special chars, etc. work in the path
svn path=/trunk/externals/unauthorized/; revision=15309
Diffstat (limited to 'audience~.c')
-rw-r--r-- | audience~.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/audience~.c b/audience~.c index fc5be90..ee09ce4 100644 --- a/audience~.c +++ b/audience~.c @@ -1059,6 +1059,6 @@ void audience_tilde_setup(void) class_setwidget(audience_class_tilde, &audience_widgetbehavior); - sys_vgui("eval [read [open %s/%s.tcl]]\n", + sys_vgui("eval [read [open {%s/%s.tcl}]]\n", audience_class_tilde->c_externdir->s_name, audience_class_tilde->c_name->s_name); } |