diff options
author | Kevin B Kenny <kennykb@acm.org> | 2009-07-14 16:52:28 (GMT) |
---|---|---|
committer | Kevin B Kenny <kennykb@acm.org> | 2009-07-14 16:52:28 (GMT) |
commit | 67e100ed95642d0ec30b5718d5c2eb66535c3cbe (patch) | |
tree | 3f792ab808ad24f569fa00894c9bab62e4972d9f /generic/tclBasic.c | |
parent | 08604cad04da0d67c84406f99bda814f6a416386 (diff) | |
download | tcl-67e100ed95642d0ec30b5718d5c2eb66535c3cbe.zip tcl-67e100ed95642d0ec30b5718d5c2eb66535c3cbe.tar.gz tcl-67e100ed95642d0ec30b5718d5c2eb66535c3cbe.tar.bz2 |
* generic/tclInt.h (TclNRSwitchObjCmd):
* generic/tclBasic.c (builtInCmds):
* generic/tclCmdMZ.c (Tcl_SwitchObjCmd):
* tests/switch.test (switch-15.1):
Make non-bytecoded [switch] command aware of NRE. [Bug 2821401]
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 a097976..fcc7d46 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.395 2009/07/14 16:34:08 andreas_kupries Exp $ + * RCS: @(#) $Id: tclBasic.c,v 1.396 2009/07/14 16:52:28 kennykb Exp $ */ #include "tclInt.h" @@ -214,7 +214,7 @@ static const CmdInfo builtInCmds[] = { {"set", Tcl_SetObjCmd, TclCompileSetCmd, NULL, 1}, {"split", Tcl_SplitObjCmd, NULL, NULL, 1}, {"subst", Tcl_SubstObjCmd, NULL, NULL, 1}, - {"switch", Tcl_SwitchObjCmd, TclCompileSwitchCmd, NULL, 1}, + {"switch", Tcl_SwitchObjCmd, TclCompileSwitchCmd, TclNRSwitchObjCmd, 1}, {"throw", Tcl_ThrowObjCmd, NULL, NULL, 1}, {"trace", Tcl_TraceObjCmd, NULL, NULL, 1}, {"try", Tcl_TryObjCmd, NULL, TclNRTryObjCmd, 1}, |