summaryrefslogtreecommitdiffstats
path: root/doc
diff options
context:
space:
mode:
authorjan.nijtmans <nijtmans@users.sourceforge.net>2017-11-20 16:01:05 (GMT)
committerjan.nijtmans <nijtmans@users.sourceforge.net>2017-11-20 16:01:05 (GMT)
commit82877a8aa3a3014d32dc21aa5309d2ae0b2a1aa0 (patch)
tree1be1702aae5457abf45fee50f4eb540c7b5d1383 /doc
parentb7e5592df1f6b8d92935251cb1616e10b656ac07 (diff)
parenta1bc5b8a2b3fbc46b0207124137c9b2a5a8cced1 (diff)
downloadtcl-82877a8aa3a3014d32dc21aa5309d2ae0b2a1aa0.zip
tcl-82877a8aa3a3014d32dc21aa5309d2ae0b2a1aa0.tar.gz
tcl-82877a8aa3a3014d32dc21aa5309d2ae0b2a1aa0.tar.bz2
merge core-8-branch. Deprecate support for "string bytelength"
Diffstat (limited to 'doc')
-rw-r--r--doc/Object.32
-rw-r--r--doc/SaveResult.34
-rw-r--r--doc/string.n4
3 files changed, 5 insertions, 5 deletions
diff --git a/doc/Object.3 b/doc/Object.3
index bf80fe2..eadd041 100644
--- a/doc/Object.3
+++ b/doc/Object.3
@@ -257,7 +257,7 @@ The \fBincr\fR command first gets an integer from \fIx\fR's value
by calling \fBTcl_GetIntFromObj\fR.
This procedure checks whether the value is already an integer value.
Since it is not, it converts the value
-by setting the value's \fIinternalRep.longValue\fR member
+by setting the value's internal representation
to the integer \fB123\fR
and setting the value's \fItypePtr\fR
to point to the integer Tcl_ObjType structure.
diff --git a/doc/SaveResult.3 b/doc/SaveResult.3
index b2270a2..6dd6cb6 100644
--- a/doc/SaveResult.3
+++ b/doc/SaveResult.3
@@ -54,9 +54,9 @@ is called, Tcl will take care of memory management.
.PP
The second triplet stores the snapshot of only the interpreter
result (not its complete state) in memory allocated by the caller.
-These routines are passed a pointer to a \fBTcl_SavedResult\fR structure
+These routines are passed a pointer to \fBTcl_SavedResult\fR
that is used to store enough information to restore the interpreter result.
-This structure can be allocated on the stack of the calling
+\fBTcl_SavedResult\fR can be allocated on the stack of the calling
procedure. These routines do not save the state of any error
information in the interpreter (e.g. the \fB\-errorcode\fR or
\fB\-errorinfo\fR return options, when an error is in progress).
diff --git a/doc/string.n b/doc/string.n
index 00ce85c..730f49e 100644
--- a/doc/string.n
+++ b/doc/string.n
@@ -386,8 +386,8 @@ store the representation is of very low value (except to C extension
code, which has direct access for the purpose of memory management,
etc.)
.PP
-\fICompatibility note:\fR it is likely that this subcommand will be
-withdrawn in a future version of Tcl. It is better to use the
+\fICompatibility note:\fR this subcommand will be gone in
+Tcl 9.0. It is better to use the
\fBencoding convertto\fR command to convert a string to a known
encoding and then apply \fBstring length\fR to that.
.PP