summaryrefslogtreecommitdiffstats
path: root/generic/tkBind.c
diff options
context:
space:
mode:
authordkf <donal.k.fellows@manchester.ac.uk>2005-11-10 11:38:29 (GMT)
committerdkf <donal.k.fellows@manchester.ac.uk>2005-11-10 11:38:29 (GMT)
commitedc304c9592d5d5d530ad08c033006e7ce1c38f1 (patch)
tree517a8bbdaa7cc28359b34c040456cec897ee44cd /generic/tkBind.c
parent1acbd7884a685ddd69efcf085700c36f2192bc95 (diff)
downloadtk-edc304c9592d5d5d530ad08c033006e7ce1c38f1.zip
tk-edc304c9592d5d5d530ad08c033006e7ce1c38f1.tar.gz
tk-edc304c9592d5d5d530ad08c033006e7ce1c38f1.tar.bz2
Fixes of other issues raised in [Bug 1353022]
Diffstat (limited to 'generic/tkBind.c')
-rw-r--r--generic/tkBind.c6
1 files changed, 4 insertions, 2 deletions
diff --git a/generic/tkBind.c b/generic/tkBind.c
index 235a0fa..44f5949 100644
--- a/generic/tkBind.c
+++ b/generic/tkBind.c
@@ -11,7 +11,7 @@
* See the file "license.terms" for information on usage and redistribution of
* this file, and for a DISCLAIMER OF ALL WARRANTIES.
*
- * RCS: @(#) $Id: tkBind.c,v 1.37 2005/11/04 11:52:50 dkf Exp $
+ * RCS: @(#) $Id: tkBind.c,v 1.38 2005/11/10 11:38:29 dkf Exp $
*/
#include "tkPort.h"
@@ -2691,7 +2691,9 @@ ChangeScreen(
Tcl_DStringAppend(&cmd, dispName, -1);
sprintf(screen, ".%d", screenIndex);
Tcl_DStringAppend(&cmd, screen, -1);
- code = Tcl_GlobalEval(interp, Tcl_DStringValue(&cmd));
+ code = Tcl_EvalEx(interp, Tcl_DStringValue(&cmd), Tcl_DStringLength(&cmd),
+ TCL_EVAL_GLOBAL);
+ Tcl_DStringFree(&cmd);
if (code != TCL_OK) {
Tcl_AddErrorInfo(interp,
"\n (changing screen in event binding)");