summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorKevin B Kenny <kennykb@acm.org>2005-12-31 02:58:00 (GMT)
committerKevin B Kenny <kennykb@acm.org>2005-12-31 02:58:00 (GMT)
commit79fa607ddd85104b91a7bda0d3c0a4b2858a9837 (patch)
treefe900007ccdfe2c059766e28f765258cc553d28c
parent872e88fa4a341e40d152513ef5eca12fc1796fc4 (diff)
downloadtcl-79fa607ddd85104b91a7bda0d3c0a4b2858a9837.zip
tcl-79fa607ddd85104b91a7bda0d3c0a4b2858a9837.tar.gz
tcl-79fa607ddd85104b91a7bda0d3c0a4b2858a9837.tar.bz2
Fix typo in missing stub table pointer
-rw-r--r--ChangeLog5
-rw-r--r--generic/tclStubLib.c4
2 files changed, 7 insertions, 2 deletions
diff --git a/ChangeLog b/ChangeLog
index e95347b..ca2b91f 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,8 @@
+2005-12-30 Kevin B. Kenny <kennykb@acm.org>
+
+ * generic/tclStubLib.c: Corrected a typo in "missing Stubs table
+ pointer."
+
2005-12-27 Kevin B. Kenny <kennykb@acm.org>
* generic/tcl.decls: Destubbed TclTomMathInitializeStubs - it is in
diff --git a/generic/tclStubLib.c b/generic/tclStubLib.c
index 75cd0c2..5e2d2ba 100644
--- a/generic/tclStubLib.c
+++ b/generic/tclStubLib.c
@@ -10,7 +10,7 @@
* See the file "license.terms" for information on usage and redistribution of
* this file, and for a DISCLAIMER OF ALL WARRANTIES.
*
- * RCS: @(#) $Id: tclStubLib.c,v 1.13 2005/12/27 17:39:02 kennykb Exp $
+ * RCS: @(#) $Id: tclStubLib.c,v 1.14 2005/12/31 02:58:00 kennykb Exp $
*/
/*
@@ -161,7 +161,7 @@ TclTomMathInitializeStubs(
return NULL;
}
if (pkgClientData == NULL) {
- errMsg = "missing stub täble pointer";
+ errMsg = "missing stub table pointer";
} else if ((stubsPtr->tclBN_epoch)() != epoch) {
errMsg = "epoch number mismatch";
} else if ((stubsPtr->tclBN_revision)() != revision) {