summaryrefslogtreecommitdiffstats
path: root/generic/tclCompile.c
diff options
context:
space:
mode:
authordgp <dgp@users.sourceforge.net>2014-12-09 20:29:09 (GMT)
committerdgp <dgp@users.sourceforge.net>2014-12-09 20:29:09 (GMT)
commit79a19a1fcbb36bd0b0e41da53fda3ee8be77efc9 (patch)
treeb3b254bfcfebf31f5c21ebb4f60bf88c890db32c /generic/tclCompile.c
parentd86c0849b3c0ed313c45e7fb28c62df8577fb690 (diff)
downloadtcl-79a19a1fcbb36bd0b0e41da53fda3ee8be77efc9.zip
tcl-79a19a1fcbb36bd0b0e41da53fda3ee8be77efc9.tar.gz
tcl-79a19a1fcbb36bd0b0e41da53fda3ee8be77efc9.tar.bz2
[e711ffb458] Replace TclIsLocalScalar() (which does the wrong thing).... with
PushVarNameWord() (which doesn't) in the compiler for [dict lappend].
Diffstat (limited to 'generic/tclCompile.c')
-rw-r--r--generic/tclCompile.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/generic/tclCompile.c b/generic/tclCompile.c
index f982359..5030f89 100644
--- a/generic/tclCompile.c
+++ b/generic/tclCompile.c
@@ -2288,8 +2288,8 @@ TclFindCompiledLocal(
* scalar or array variable. If NULL, a
* temporary var should be created. */
int nameBytes, /* Number of bytes in the name. */
- int create, /* If 1, allocate a local frame entry for the
- * variable if it is new. */
+ int create, /* If non-zero, allocate a local frame entry
+ * for the variable if it is new. */
register Proc *procPtr) /* Points to structure describing procedure
* containing the variable reference. */
{