diff options
author | dgp <dgp@users.sourceforge.net> | 2013-07-05 19:54:56 (GMT) |
---|---|---|
committer | dgp <dgp@users.sourceforge.net> | 2013-07-05 19:54:56 (GMT) |
commit | 1ac20bac749a345520e4c261dcfe77c88fe0aede (patch) | |
tree | d319d892fc9816563f53aeb9ae7a9eee9d56c00c /generic/tclCompile.c | |
parent | 5599b1864958a90b4754b554eadb41722bdc9246 (diff) | |
parent | 81273c08299cbf6136ed00929ef536381e044d91 (diff) | |
download | tcl-1ac20bac749a345520e4c261dcfe77c88fe0aede.zip tcl-1ac20bac749a345520e4c261dcfe77c88fe0aede.tar.gz tcl-1ac20bac749a345520e4c261dcfe77c88fe0aede.tar.bz2 |
merge trunk
Diffstat (limited to 'generic/tclCompile.c')
-rw-r--r-- | generic/tclCompile.c | 3 |
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) { |