summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authordkf <donal.k.fellows@manchester.ac.uk>2009-04-10 13:14:38 (GMT)
committerdkf <donal.k.fellows@manchester.ac.uk>2009-04-10 13:14:38 (GMT)
commiteec238cfa6822ad7a80ba6e1678b59e8b01863e6 (patch)
tree8a7f6f504f880cd0dc4869b6bacd1bda99062dbe
parent6626a523f72667a745e0137510e8b65b4984bed0 (diff)
downloadtcl-eec238cfa6822ad7a80ba6e1678b59e8b01863e6.zip
tcl-eec238cfa6822ad7a80ba6e1678b59e8b01863e6.tar.gz
tcl-eec238cfa6822ad7a80ba6e1678b59e8b01863e6.tar.bz2
Fix for immediate problem in [Bug 2089279].
-rw-r--r--ChangeLog34
-rw-r--r--doc/StringObj.36
2 files changed, 23 insertions, 17 deletions
diff --git a/ChangeLog b/ChangeLog
index ebe410b..01172d7 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,7 +1,12 @@
+2009-04-10 Donal K. Fellows <dkf@users.sf.net>
+
+ * doc/StringObj.3: [Bug 2089279]: Corrected example so that it works
+ on 64-bit machines as well.
+
2009-04-10 Pat Thoyts <patthoyts@users.sourceforge.net>
- * tests/http.test: Added specific check for [Bug 26245326]
- * tests/httpd: (return incomplete HTTP response header)
+ * tests/http.test: [Bug 26245326]: Added specific check for problem
+ * tests/httpd: (return incomplete HTTP response header).
2009-04-08 Kevin B. Kenny <kennykb@acm.org>
@@ -10,30 +15,31 @@
2009-04-09 Don Porter <dgp@users.sourceforge.net>
- * library/http/http.tcl: Handle incomplete lines in the
- "connecting" state. Thanks to Sergei Golovan. [Bug 26245326]
+ * library/http/http.tcl: [Bug 26245326]: Handle incomplete
+ lines in the "connecting" state. Thanks to Sergei Golovan.
2009-04-08 Andreas Kupries <andreask@activestate.com>
- * library/platform/platform.tcl: Extended the darwin sections to
- * library/platform/pkgIndex.tcl: add a kernel version number to
- * unix/Makefile.in: the identifier for anything from Leopard (10.5)
- * win/Makefile.in: on up. Extended patterns for same. Extended cpu
- * doc/platform.n: recognition for 64bit Tcl running on a 32bit
- kernel on a 64bit processor (By Daniel Steffen). Bumped version to
- 1.0.4. Updated Makefiles.
+ * library/platform/platform.tcl: Extended the darwin sections to add
+ * library/platform/pkgIndex.tcl: a kernel version number to the
+ * unix/Makefile.in: identifier for anything from Leopard (10.5) on up.
+ * win/Makefile.in: Extended patterns for same. Extended cpu
+ * doc/platform.n: recognition for 64bit Tcl running on a 32bit kernel
+ on a 64bit processor (By Daniel Steffen). Bumped version to 1.0.4.
+ Updated Makefiles.
2009-04-08 Don Porter <dgp@users.sourceforge.net>
- * library/tcltest/tcltest.tcl: Converted [eval]s (some unsafe!) to
- * library/tcltest/pkgIndex.tcl: {*} in tcltest package. [Bug 2570363]
+ * library/tcltest/tcltest.tcl: [Bug 2570363]: Converted [eval]s (some
+ * library/tcltest/pkgIndex.tcl: unsafe!) to {*} in tcltest package.
* unix/Makefile.in: => tcltest 2.3.1
* win/Makefile.in:
2009-04-07 Don Porter <dgp@users.sourceforge.net>
* generic/tclStringObj.c: Correction so that value of
- TCL_GROWTH_MIN_ALLOC is everywhere expressed in bytes as comment claims.
+ TCL_GROWTH_MIN_ALLOC is everywhere expressed in bytes as comment
+ claims.
2009-04-04 Donal K. Fellows <dkf@users.sf.net>
diff --git a/doc/StringObj.3 b/doc/StringObj.3
index f8e6552..8091e2b 100644
--- a/doc/StringObj.3
+++ b/doc/StringObj.3
@@ -4,7 +4,7 @@
'\" See the file "license.terms" for information on usage and redistribution
'\" of this file, and for a DISCLAIMER OF ALL WARRANTIES.
'\"
-'\" RCS: @(#) $Id: StringObj.3,v 1.30 2008/12/18 21:23:47 dkf Exp $
+'\" RCS: @(#) $Id: StringObj.3,v 1.31 2009/04/10 13:14:38 dkf Exp $
'\"
.so man.macros
.TH Tcl_StringObj 3 8.1 Tcl "Tcl Library Procedures"
@@ -321,10 +321,10 @@ assumption that C code is more likely to know how many bytes it is
passing around than the number of encoded characters those bytes happen
to represent. The variable number of arguments passed in should be of
the types that would be suitable for passing to \fBsprintf\fR. Note in
-this example usage, \fIx\fR is of type \fBlong\fR.
+this example usage, \fIx\fR is of type \fBint\fR.
.PP
.CS
-long x = 5;
+int x = 5;
Tcl_Obj *objPtr = \fBTcl_ObjPrintf\fR("Value is %d", x);
.CE
.PP