diff options
author | Miguel Sofer <miguel.sofer@gmail.com> | 2006-09-30 17:56:45 (GMT) |
---|---|---|
committer | Miguel Sofer <miguel.sofer@gmail.com> | 2006-09-30 17:56:45 (GMT) |
commit | 7d238aee5a63e4f16bafa9863ec090f904e66df2 (patch) | |
tree | ad9a7220c6ca69cd16f1f4d0574ec34d46c1ad63 /generic/tclInt.h | |
parent | 858a806396de6a90554a6ebd0ce288b554f61ac7 (diff) | |
download | tcl-7d238aee5a63e4f16bafa9863ec090f904e66df2.zip tcl-7d238aee5a63e4f16bafa9863ec090f904e66df2.tar.gz tcl-7d238aee5a63e4f16bafa9863ec090f904e66df2.tar.bz2 |
* generic/tclCompile.c:
* generic/tclHistory.c:
* generic/tclInt.h:
* generic/tclProc.c: made Tcl_RecordAndEvalObj not call "history"
if it has been redefined to an empty proc, in order to reduce the
noise when debugging [FR 1190441]. Moved TclCompileNoOp from
tclProc.c to tclCompile.c
Diffstat (limited to 'generic/tclInt.h')
-rw-r--r-- | generic/tclInt.h | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/generic/tclInt.h b/generic/tclInt.h index 9a0edf7..a3d6f48 100644 --- a/generic/tclInt.h +++ b/generic/tclInt.h @@ -12,7 +12,7 @@ * See the file "license.terms" for information on usage and redistribution of * this file, and for a DISCLAIMER OF ALL WARRANTIES. * - * RCS: @(#) $Id: tclInt.h,v 1.277 2006/09/22 22:32:07 andreas_kupries Exp $ + * RCS: @(#) $Id: tclInt.h,v 1.278 2006/09/30 17:56:47 msofer Exp $ */ #ifndef _TCLINT @@ -2554,6 +2554,8 @@ MODULE_SCOPE int TclCompileLlengthCmd(Tcl_Interp *interp, Tcl_Parse *parsePtr, struct CompileEnv *envPtr); MODULE_SCOPE int TclCompileLsetCmd(Tcl_Interp* interp, Tcl_Parse* parsePtr, struct CompileEnv* envPtr); +MODULE_SCOPE int TclCompileNoOp(Tcl_Interp *interp, Tcl_Parse *parsePtr, + struct CompileEnv *envPtr); MODULE_SCOPE int TclCompileRegexpCmd(Tcl_Interp* interp, Tcl_Parse* parsePtr, struct CompileEnv* envPtr); MODULE_SCOPE int TclCompileReturnCmd(Tcl_Interp *interp, |