diff options
author | dgp <dgp@users.sourceforge.net> | 2004-10-01 03:19:56 (GMT) |
---|---|---|
committer | dgp <dgp@users.sourceforge.net> | 2004-10-01 03:19:56 (GMT) |
commit | 659cfd43ab1e3669896b987ce4d501df9e9b80cc (patch) | |
tree | f632e092989c9cfee43e392e9df3a70514351674 /generic/tclBasic.c | |
parent | e4934a0b0d10dcb22c615f1ff62a6e596b753455 (diff) | |
download | tcl-659cfd43ab1e3669896b987ce4d501df9e9b80cc.zip tcl-659cfd43ab1e3669896b987ce4d501df9e9b80cc.tar.gz tcl-659cfd43ab1e3669896b987ce4d501df9e9b80cc.tar.bz2 |
* generic/tclBasic.c (Tcl_CreateInterp): Removed the flag bit value
* generic/tclInt.h (Interp): EXPR_INITIALIZED. It was set during
interp creation and never tested. Whatever purpose it had is in
the past.
Diffstat (limited to 'generic/tclBasic.c')
-rw-r--r-- | generic/tclBasic.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/generic/tclBasic.c b/generic/tclBasic.c index 2d068fc..6cb7cd0 100644 --- a/generic/tclBasic.c +++ b/generic/tclBasic.c @@ -13,7 +13,7 @@ * See the file "license.terms" for information on usage and redistribution * of this file, and for a DISCLAIMER OF ALL WARRANTIES. * - * RCS: @(#) $Id: tclBasic.c,v 1.121 2004/10/01 03:10:35 dgp Exp $ + * RCS: @(#) $Id: tclBasic.c,v 1.122 2004/10/01 03:19:56 dgp Exp $ */ #include "tclInt.h" @@ -419,7 +419,6 @@ Tcl_CreateInterp() mathFuncPtr->builtinFuncIndex = i; i++; } - iPtr->flags |= EXPR_INITIALIZED; /* * Do Multiple/Safe Interps Tcl init stuff |