diff options
author | dkf <donal.k.fellows@manchester.ac.uk> | 2010-02-09 20:51:53 (GMT) |
---|---|---|
committer | dkf <donal.k.fellows@manchester.ac.uk> | 2010-02-09 20:51:53 (GMT) |
commit | 10c072cd77b0339c60b1861fe19ee8bd81eb14a0 (patch) | |
tree | fdc59a83272d2d5bacd76f918b88cde401b76e61 /generic/tclBasic.c | |
parent | c9ff0f04abcd6fbf70000f4d8e28579ffe341303 (diff) | |
download | tcl-10c072cd77b0339c60b1861fe19ee8bd81eb14a0.zip tcl-10c072cd77b0339c60b1861fe19ee8bd81eb14a0.tar.gz tcl-10c072cd77b0339c60b1861fe19ee8bd81eb14a0.tar.bz2 |
Compilation of [try] now enabled!
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 7eb8359..97b4a5c 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.442 2010/02/05 22:39:44 dkf Exp $ + * RCS: @(#) $Id: tclBasic.c,v 1.443 2010/02/09 20:51:54 dkf Exp $ */ #include "tclInt.h" @@ -240,7 +240,7 @@ static const CmdInfo builtInCmds[] = { {"tailcall", NULL, NULL, TclNRTailcallObjCmd, 1}, {"throw", Tcl_ThrowObjCmd, NULL, NULL, 1}, {"trace", Tcl_TraceObjCmd, NULL, NULL, 1}, - {"try", Tcl_TryObjCmd, NULL, TclNRTryObjCmd, 1}, + {"try", Tcl_TryObjCmd, TclCompileTryCmd, TclNRTryObjCmd, 1}, {"unset", Tcl_UnsetObjCmd, TclCompileUnsetCmd, NULL, 1}, {"uplevel", Tcl_UplevelObjCmd, NULL, TclNRUplevelObjCmd, 1}, {"upvar", Tcl_UpvarObjCmd, TclCompileUpvarCmd, NULL, 1}, |