diff options
author | Miguel Sofer <miguel.sofer@gmail.com> | 2006-10-31 00:15:17 (GMT) |
---|---|---|
committer | Miguel Sofer <miguel.sofer@gmail.com> | 2006-10-31 00:15:17 (GMT) |
commit | 14e06bc0da3f3fc9c51f0905122c160e0bec7b14 (patch) | |
tree | e9ffb6a3efe5d3073b78b386e6fd3208d44b483b | |
parent | 7bee3e28692d4f29cf020e91b07e698841861110 (diff) | |
download | tcl-14e06bc0da3f3fc9c51f0905122c160e0bec7b14.zip tcl-14e06bc0da3f3fc9c51f0905122c160e0bec7b14.tar.gz tcl-14e06bc0da3f3fc9c51f0905122c160e0bec7b14.tar.bz2 |
boo - last commit did not compile :(
-rw-r--r-- | generic/tclBasic.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/generic/tclBasic.c b/generic/tclBasic.c index d5f0e3d..9a40f38 100644 --- a/generic/tclBasic.c +++ b/generic/tclBasic.c @@ -13,7 +13,7 @@ * See the file "license.terms" for information on usage and redistribution of * this file, and for a DISCLAIMER OF ALL WARRANTIES. * - * RCS: @(#) $Id: tclBasic.c,v 1.205 2006/10/31 00:09:25 msofer Exp $ + * RCS: @(#) $Id: tclBasic.c,v 1.206 2006/10/31 00:15:17 msofer Exp $ */ #include "tclInt.h" @@ -3414,7 +3414,7 @@ TclEvalObjvInternal( * Restore the calling objc/objv, in case it was spoiled by traces */ - if (!(checktraces && (flags & TCL_EVAL_NOREWRITE)) { + if (!(checkTraces && (flags & TCL_EVAL_NOREWRITE))) { iPtr->callObjc = objc; iPtr->callObjv = objv; } |