diff options
author | dkf <donal.k.fellows@manchester.ac.uk> | 2010-03-19 11:54:06 (GMT) |
---|---|---|
committer | dkf <donal.k.fellows@manchester.ac.uk> | 2010-03-19 11:54:06 (GMT) |
commit | 9d6f5201163bb582aa7e121e4c8b9799ec415479 (patch) | |
tree | 9ae9c5f44af5aa9421bb2bd4ddb91f67e9ab4829 /generic/tclBasic.c | |
parent | 5047cca473a0226f06a3b69d9f0b62a0b3732e79 (diff) | |
download | tcl-9d6f5201163bb582aa7e121e4c8b9799ec415479.zip tcl-9d6f5201163bb582aa7e121e4c8b9799ec415479.tar.gz tcl-9d6f5201163bb582aa7e121e4c8b9799ec415479.tar.bz2 |
Compile the [throw] command.
Diffstat (limited to 'generic/tclBasic.c')
-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 b9282ae..148baa4 100644 --- a/generic/tclBasic.c +++ b/generic/tclBasic.c @@ -16,7 +16,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.448 2010/03/05 14:34:03 dkf Exp $ + * RCS: @(#) $Id: tclBasic.c,v 1.449 2010/03/19 11:54:06 dkf Exp $ */ #include "tclInt.h" @@ -238,7 +238,7 @@ static const CmdInfo builtInCmds[] = { {"subst", Tcl_SubstObjCmd, TclCompileSubstCmd, TclNRSubstObjCmd, 1}, {"switch", Tcl_SwitchObjCmd, TclCompileSwitchCmd, TclNRSwitchObjCmd, 1}, {"tailcall", NULL, NULL, TclNRTailcallObjCmd, 1}, - {"throw", Tcl_ThrowObjCmd, NULL, NULL, 1}, + {"throw", Tcl_ThrowObjCmd, TclCompileThrowCmd, NULL, 1}, {"trace", Tcl_TraceObjCmd, NULL, NULL, 1}, {"try", Tcl_TryObjCmd, TclCompileTryCmd, TclNRTryObjCmd, 1}, {"unset", Tcl_UnsetObjCmd, TclCompileUnsetCmd, NULL, 1}, |