diff options
author | dkf <donal.k.fellows@manchester.ac.uk> | 2009-07-23 22:21:34 (GMT) |
---|---|---|
committer | dkf <donal.k.fellows@manchester.ac.uk> | 2009-07-23 22:21:34 (GMT) |
commit | ffc211b15ff17707b7b6c6e78bab2db22b332ac7 (patch) | |
tree | 786137357907a985a5d5bd2186cfedcd5bbe71d6 /generic/tkBind.c | |
parent | 328c3132eb68f540d1a522b545828d31431456be (diff) | |
download | tk-ffc211b15ff17707b7b6c6e78bab2db22b332ac7.zip tk-ffc211b15ff17707b7b6c6e78bab2db22b332ac7.tar.gz tk-ffc211b15ff17707b7b6c6e78bab2db22b332ac7.tar.bz2 |
Fix [Bug 2441988]. Also squelch use of TkCopyAndGlobalEval, we can do better!
Diffstat (limited to 'generic/tkBind.c')
-rw-r--r-- | generic/tkBind.c | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/generic/tkBind.c b/generic/tkBind.c index 1d59604..0213111 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.54 2009/04/11 04:26:49 das Exp $ + * RCS: @(#) $Id: tkBind.c,v 1.55 2009/07/23 22:21:35 dkf Exp $ */ #include "tkInt.h" @@ -4613,12 +4613,14 @@ TkKeysymToString( * 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: - * None. + * Any; depends on script. * *---------------------------------------------------------------------- */ |