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 /pianoroll.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 'pianoroll.c')
-rw-r--r-- | pianoroll.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/pianoroll.c b/pianoroll.c index eeda5a5..ac61952 100644 --- a/pianoroll.c +++ b/pianoroll.c @@ -811,7 +811,7 @@ void pianoroll_setup(void) class_setwidget(pianoroll_class, &pianoroll_widgetbehavior); - sys_vgui("eval [read [open %s/%s.tcl]]\n", + sys_vgui("eval [read [open {%s/%s.tcl}]]\n", pianoroll_class->c_externdir->s_name, pianoroll_class->c_name->s_name); } |