summaryrefslogtreecommitdiffstats
path: root/generic/tclCompile.c
diff options
context:
space:
mode:
authordgp <dgp@users.sourceforge.net>2013-07-05 19:54:56 (GMT)
committerdgp <dgp@users.sourceforge.net>2013-07-05 19:54:56 (GMT)
commit1ac20bac749a345520e4c261dcfe77c88fe0aede (patch)
treed319d892fc9816563f53aeb9ae7a9eee9d56c00c /generic/tclCompile.c
parent5599b1864958a90b4754b554eadb41722bdc9246 (diff)
parent81273c08299cbf6136ed00929ef536381e044d91 (diff)
downloadtcl-1ac20bac749a345520e4c261dcfe77c88fe0aede.zip
tcl-1ac20bac749a345520e4c261dcfe77c88fe0aede.tar.gz
tcl-1ac20bac749a345520e4c261dcfe77c88fe0aede.tar.bz2
merge trunk
Diffstat (limited to 'generic/tclCompile.c')
-rw-r--r--generic/tclCompile.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/generic/tclCompile.c b/generic/tclCompile.c
index 05daabf..5aab69c 100644
--- a/generic/tclCompile.c
+++ b/generic/tclCompile.c
@@ -1773,11 +1773,12 @@ CompileCommandTokens(
}
}
- /* Do we know the command word? */
+ /* Do we know the command word? */
Tcl_IncrRefCount(cmdObj);
tokenPtr = parsePtr->tokenPtr;
cmdKnown = TclWordKnownAtCompileTime(tokenPtr, cmdObj);
+ /* Is this a command we should (try to) compile with a compileProc ? */
if (cmdKnown && !(iPtr->flags & DONT_COMPILE_CMDS_INLINE)) {
cmdPtr = (Command *) Tcl_GetCommandFromObj(interp, cmdObj);
if (cmdPtr) {