summaryrefslogtreecommitdiffstats
path: root/generic/tclBasic.c
diff options
context:
space:
mode:
authorMiguel Sofer <miguel.sofer@gmail.com>2008-07-31 18:29:38 (GMT)
committerMiguel Sofer <miguel.sofer@gmail.com>2008-07-31 18:29:38 (GMT)
commit48251df30f4df754d76577f0bb3f1a230a205ad4 (patch)
treee28343ee123d24f053232271026bf185e584ff18 /generic/tclBasic.c
parent4325c5973acbaf71dedbc3d44b7e4264d9986702 (diff)
downloadtcl-48251df30f4df754d76577f0bb3f1a230a205ad4.zip
tcl-48251df30f4df754d76577f0bb3f1a230a205ad4.tar.gz
tcl-48251df30f4df754d76577f0bb3f1a230a205ad4.tar.bz2
nr-enabling [while]
Diffstat (limited to 'generic/tclBasic.c')
-rw-r--r--generic/tclBasic.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/generic/tclBasic.c b/generic/tclBasic.c
index d65d32b..b4a59d5 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.344 2008/07/31 17:32:29 msofer Exp $
+ * RCS: @(#) $Id: tclBasic.c,v 1.345 2008/07/31 18:29:38 msofer Exp $
*/
#include "tclInt.h"
@@ -227,7 +227,7 @@ static const CmdInfo builtInCmds[] = {
{"uplevel", Tcl_UplevelObjCmd, NULL, TclNRUplevelObjCmd, 1},
{"upvar", Tcl_UpvarObjCmd, TclCompileUpvarCmd, NULL, 1},
{"variable", Tcl_VariableObjCmd, TclCompileVariableCmd, NULL, 1},
- {"while", Tcl_WhileObjCmd, TclCompileWhileCmd, NULL, 1},
+ {"while", Tcl_WhileObjCmd, TclCompileWhileCmd, TclNRWhileObjCmd, 1},
/*
* Commands in the OS-interface. Note that many of these are unsafe.