summaryrefslogtreecommitdiffstats
path: root/generic/tclBasic.c
diff options
context:
space:
mode:
authordkf <dkf@noemail.net>2002-07-19 12:31:09 (GMT)
committerdkf <dkf@noemail.net>2002-07-19 12:31:09 (GMT)
commitd9241d70c77cf4405d75c8dbb53e90e41b2bb2f9 (patch)
tree4bf2d4935b5e97743834dba726fe88543f867664 /generic/tclBasic.c
parent1d75b3aadbe5415be2db82c8226e5431c51b7947 (diff)
downloadtcl-d9241d70c77cf4405d75c8dbb53e90e41b2bb2f9.zip
tcl-d9241d70c77cf4405d75c8dbb53e90e41b2bb2f9.tar.gz
tcl-d9241d70c77cf4405d75c8dbb53e90e41b2bb2f9.tar.bz2
Global symbols are now all either prefixed with 'tcl' (or 'Tcl' or ...) or have file-scope.
FossilOrigin-Name: 86e27ff753182370088914b09b67faefe53a8d37
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 86730ab..a2d1dcd 100644
--- a/generic/tclBasic.c
+++ b/generic/tclBasic.c
@@ -13,7 +13,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.64 2002/07/18 13:37:45 msofer Exp $
+ * RCS: @(#) $Id: tclBasic.c,v 1.65 2002/07/19 12:31:09 dkf Exp $
*/
#include "tclInt.h"
@@ -482,7 +482,7 @@ Tcl_CreateInterp()
*/
i = 0;
- for (builtinFuncPtr = builtinFuncTable; builtinFuncPtr->name != NULL;
+ for (builtinFuncPtr = tclBuiltinFuncTable; builtinFuncPtr->name != NULL;
builtinFuncPtr++) {
Tcl_CreateMathFunc((Tcl_Interp *) iPtr, builtinFuncPtr->name,
builtinFuncPtr->numArgs, builtinFuncPtr->argTypes,