summaryrefslogtreecommitdiffstats
path: root/generic/tkBind.c
diff options
context:
space:
mode:
authornijtmans <nijtmans>2010-06-21 12:14:07 (GMT)
committernijtmans <nijtmans>2010-06-21 12:14:07 (GMT)
commitb888cd3011dbbc4984d32475243bb501947969f2 (patch)
treeb5d632f2535690345da120af888839a6174c47e8 /generic/tkBind.c
parent8b0817c5ff3553c35d243c6ed17108fb423971ee (diff)
downloadtk-b888cd3011dbbc4984d32475243bb501947969f2.zip
tk-b888cd3011dbbc4984d32475243bb501947969f2.tar.gz
tk-b888cd3011dbbc4984d32475243bb501947969f2.tar.bz2
[Patch #2999889] TkCopyAndGlobalEval obsolete
Diffstat (limited to 'generic/tkBind.c')
-rw-r--r--generic/tkBind.c39
1 files changed, 1 insertions, 38 deletions
diff --git a/generic/tkBind.c b/generic/tkBind.c
index bf21e59..8f40900 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.67 2010/06/19 16:18:41 jenglish Exp $
+ * RCS: @(#) $Id: tkBind.c,v 1.68 2010/06/21 12:14:08 nijtmans Exp $
*/
#include "tkInt.h"
@@ -4239,43 +4239,6 @@ TkKeysymToString(
/*
*----------------------------------------------------------------------
*
- * TkCopyAndGlobalEval --
- *
- * This function makes a copy of a script then calls Tcl_GlobalEval to
- * evaluate it. It's used in situations where the execution of a command
- * may cause the original command string to be reallocated.
- *
- * OBSOLETE! NOT USED ANYWHERE IN TK! ONLY FOR STUB TABLE!
- *
- * Results:
- * Returns the result of evaluating script, including both a standard Tcl
- * completion code and a string in the interp's result.
- *
- * Side effects:
- * Any; depends on script.
- *
- *----------------------------------------------------------------------
- */
-
-int
-TkCopyAndGlobalEval(
- Tcl_Interp *interp, /* Interpreter in which to evaluate script. */
- const char *script) /* Script to evaluate. */
-{
- Tcl_DString buffer;
- int code;
-
- Tcl_DStringInit(&buffer);
- Tcl_DStringAppend(&buffer, script, -1);
- code = Tcl_EvalEx(interp, Tcl_DStringValue(&buffer),
- Tcl_DStringLength(&buffer), TCL_EVAL_GLOBAL);
- Tcl_DStringFree(&buffer);
- return code;
-}
-
-/*
- *----------------------------------------------------------------------
- *
* TkpGetBindingXEvent --
*
* This function returns the XEvent associated with the currently