summaryrefslogtreecommitdiffstats
path: root/generic/tclVar.c
diff options
context:
space:
mode:
authormsofer <msofer@noemail.net>2003-11-20 19:18:59 (GMT)
committermsofer <msofer@noemail.net>2003-11-20 19:18:59 (GMT)
commit777481766b9c3d1cdc5d74df4f1ef82d2e847972 (patch)
tree061289481c823175e126a8ca668f79cd12fef736 /generic/tclVar.c
parent5da4604d7cec8d49419de8b5a92991671eebab96 (diff)
downloadtcl-777481766b9c3d1cdc5d74df4f1ef82d2e847972.zip
tcl-777481766b9c3d1cdc5d74df4f1ef82d2e847972.tar.gz
tcl-777481766b9c3d1cdc5d74df4f1ef82d2e847972.tar.bz2
* generic/tclVar.c: fix flag bit collision between
LOOKUP_FOR_UPVAR and TCL_PARSE_PART1 (deprecated) [Bug 835020] FossilOrigin-Name: 27a479625d0c304b842bd9d9e164f661231fac7e
Diffstat (limited to 'generic/tclVar.c')
-rw-r--r--generic/tclVar.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/generic/tclVar.c b/generic/tclVar.c
index a46b2d3..80089b6 100644
--- a/generic/tclVar.c
+++ b/generic/tclVar.c
@@ -15,7 +15,7 @@
* See the file "license.terms" for information on usage and redistribution
* of this file, and for a DISCLAIMER OF ALL WARRANTIES.
*
- * RCS: @(#) $Id: tclVar.c,v 1.69.2.3 2003/05/12 17:31:51 msofer Exp $
+ * RCS: @(#) $Id: tclVar.c,v 1.69.2.4 2003/11/20 19:19:03 msofer Exp $
*/
#include "tclInt.h"
@@ -616,7 +616,7 @@ TclObjLookupVar(interp, part1Ptr, part2, flags, msg, createPart1, createPart2,
* namespace; never follow the second (global) resolution path
* - Bug #631741 - do not use special namespace or interp resolvers
*/
-#define LOOKUP_FOR_UPVAR 0x400
+#define LOOKUP_FOR_UPVAR 0x40000
/*
*----------------------------------------------------------------------