summaryrefslogtreecommitdiffstats
path: root/generic
diff options
context:
space:
mode:
authorMiguel Sofer <miguel.sofer@gmail.com>2003-11-20 19:19:00 (GMT)
committerMiguel Sofer <miguel.sofer@gmail.com>2003-11-20 19:19:00 (GMT)
commit6f505b809fd5917dcd361127daa178c70946135c (patch)
tree061289481c823175e126a8ca668f79cd12fef736 /generic
parentbaea4220439866995f3c1a6cf225b0fe75bfb4bc (diff)
downloadtcl-6f505b809fd5917dcd361127daa178c70946135c.zip
tcl-6f505b809fd5917dcd361127daa178c70946135c.tar.gz
tcl-6f505b809fd5917dcd361127daa178c70946135c.tar.bz2
* generic/tclVar.c: fix flag bit collision between
LOOKUP_FOR_UPVAR and TCL_PARSE_PART1 (deprecated) [Bug 835020]
Diffstat (limited to 'generic')
-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
/*
*----------------------------------------------------------------------