diff options
author | dkf <donal.k.fellows@manchester.ac.uk> | 2010-02-05 22:39:44 (GMT) |
---|---|---|
committer | dkf <donal.k.fellows@manchester.ac.uk> | 2010-02-05 22:39:44 (GMT) |
commit | a7d5e487cdc90cf70ddff97143b7357800b9388d (patch) | |
tree | 1ad7de865c4e74dc1bd2837830822c3c0b0c9e17 /generic/tclInt.h | |
parent | 9f80e538be5be980c7e52789ff2162b08db46823 (diff) | |
download | tcl-a7d5e487cdc90cf70ddff97143b7357800b9388d.zip tcl-a7d5e487cdc90cf70ddff97143b7357800b9388d.tar.gz tcl-a7d5e487cdc90cf70ddff97143b7357800b9388d.tar.bz2 |
Added basic compilation of [error] (the most common case only).
Diffstat (limited to 'generic/tclInt.h')
-rw-r--r-- | generic/tclInt.h | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/generic/tclInt.h b/generic/tclInt.h index d08ed12..0e98299 100644 --- a/generic/tclInt.h +++ b/generic/tclInt.h @@ -15,7 +15,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.458 2010/02/05 10:03:23 nijtmans Exp $ + * RCS: @(#) $Id: tclInt.h,v 1.459 2010/02/05 22:39:44 dkf Exp $ */ #ifndef _TCLINT @@ -3318,6 +3318,9 @@ MODULE_SCOPE int TclCompileDictUpdateCmd(Tcl_Interp *interp, MODULE_SCOPE int TclCompileEnsemble(Tcl_Interp *interp, Tcl_Parse *parsePtr, Command *cmdPtr, struct CompileEnv *envPtr); +MODULE_SCOPE int TclCompileErrorCmd(Tcl_Interp *interp, + Tcl_Parse *parsePtr, Command *cmdPtr, + struct CompileEnv *envPtr); MODULE_SCOPE int TclCompileExprCmd(Tcl_Interp *interp, Tcl_Parse *parsePtr, Command *cmdPtr, struct CompileEnv *envPtr); |