mirror of
https://github.com/Ponce/slackbuilds
synced 2024-11-18 22:06:04 +01:00
2fd7099e9b
Signed-off-by: Matteo Bernardini <ponce@slackbuilds.org>
13 lines
308 B
Diff
13 lines
308 B
Diff
http://bugs.gentoo.org/451296
|
|
|
|
--- interface/tk_c.c
|
|
+++ interface/tk_c.c
|
|
@@ -913,7 +913,7 @@
|
|
vsnprintf(buf, sizeof(buf), fmt, ap);
|
|
Tcl_Eval(my_interp, buf);
|
|
va_end(ap);
|
|
- return my_interp->result;
|
|
+ return Tcl_GetStringResult(my_interp);
|
|
}
|
|
|
|
static const char *v_get2(const char *v1, const char *v2)
|