diff options
-rw-r--r-- | ChangeLog | 4 | ||||
-rw-r--r-- | generic/tclCmdAH.c | 8 |
2 files changed, 5 insertions, 7 deletions
@@ -1,3 +1,7 @@ +2004-09-19 Miguel Sofer <msofer@users.sf.net> + + * generic/tclCmdAH.c: removed outdated comment [Bug 1029518]. + 2004-09-18 David Gravereaux <davygrvy@pobox.com> * win/tclAppInit.c: Dde package can load into a safe interp. diff --git a/generic/tclCmdAH.c b/generic/tclCmdAH.c index 9dbb644..cf57fce 100644 --- a/generic/tclCmdAH.c +++ b/generic/tclCmdAH.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: tclCmdAH.c,v 1.46 2004/09/17 22:59:14 dgp Exp $ + * RCS: @(#) $Id: tclCmdAH.c,v 1.47 2004/09/19 13:08:31 msofer Exp $ */ #include "tclInt.h" @@ -242,12 +242,6 @@ Tcl_CatchObjCmd(dummy, interp, objc, objv) return TCL_ERROR; } - /* - * Save a pointer to the variable name object, if any, in case the - * Tcl_EvalObj reallocates the bytecode interpreter's evaluation - * stack rendering objv invalid. - */ - if (objc >= 3) { varNamePtr = objv[2]; } |