summaryrefslogtreecommitdiffstats
path: root/generic/tclOO.c
diff options
context:
space:
mode:
authornijtmans <nijtmans@noemail.net>2010-02-15 22:56:19 (GMT)
committernijtmans <nijtmans@noemail.net>2010-02-15 22:56:19 (GMT)
commit260684920859799e9355ce2725795002aae69af4 (patch)
tree140d3d78d10e4ec6405c364f7a6936a7a07086a5 /generic/tclOO.c
parent600822ecfefdbc6a08f84fa8f8db6f1c64eea1d6 (diff)
downloadtcl-260684920859799e9355ce2725795002aae69af4.zip
tcl-260684920859799e9355ce2725795002aae69af4.tar.gz
tcl-260684920859799e9355ce2725795002aae69af4.tar.bz2
reverted earlier rename from tcl*Stubs to
tcl*ConstStubs, it's not necessary at all. tclEnsemble.c: Fix signed-unsigned mismatch make tclWinProcs "const" Add first part of mslu support, See [Feature Request #2819611] FossilOrigin-Name: 0d29245dd5206eba5211a17216e65982d0be8923
Diffstat (limited to 'generic/tclOO.c')
-rw-r--r--generic/tclOO.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/generic/tclOO.c b/generic/tclOO.c
index c51a69c..e6c86c7 100644
--- a/generic/tclOO.c
+++ b/generic/tclOO.c
@@ -8,7 +8,7 @@
* See the file "license.terms" for information on usage and redistribution of
* this file, and for a DISCLAIMER OF ALL WARRANTIES.
*
- * RCS: @(#) $Id: tclOO.c,v 1.32 2010/02/15 11:53:45 dkf Exp $
+ * RCS: @(#) $Id: tclOO.c,v 1.33 2010/02/15 22:56:20 nijtmans Exp $
*/
#ifdef HAVE_CONFIG_H
@@ -137,7 +137,7 @@ static char initScript[] =
/* "tcl_findLibrary tcloo $oo::version $oo::version" */
/* " tcloo.tcl OO_LIBRARY oo::library;"; */
-MODULE_SCOPE const TclOOStubs tclOOConstStubs;
+MODULE_SCOPE const TclOOStubs tclOOStubs;
/*
* Convenience macro for getting the foundation from an interpreter.
@@ -183,7 +183,7 @@ TclOOInit(
}
return Tcl_PkgProvideEx(interp, "TclOO", TCLOO_VERSION,
- (ClientData) &tclOOConstStubs);
+ (ClientData) &tclOOStubs);
}
/*