summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authordgp <dgp@users.sourceforge.net>2003-07-18 15:20:50 (GMT)
committerdgp <dgp@users.sourceforge.net>2003-07-18 15:20:50 (GMT)
commit5153262cb382cf320355160b48b661e92058973c (patch)
tree9532c13c50f34ea11fd263382e3fa4636f64f4ec
parent6ad56e7d131d1c69896ded85ef8f69fcf6c446a5 (diff)
downloadtcl-5153262cb382cf320355160b48b661e92058973c.zip
tcl-5153262cb382cf320355160b48b661e92058973c.tar.gz
tcl-5153262cb382cf320355160b48b661e92058973c.tar.bz2
* doc/CrtSlave.3 (Tcl_MakeSafe): Removed warning about possible
deprecation (no TIP on that).
-rw-r--r--ChangeLog9
-rw-r--r--doc/CrtSlave.39
-rw-r--r--doc/CrtTrace.34
-rw-r--r--doc/GetIndex.36
4 files changed, 16 insertions, 12 deletions
diff --git a/ChangeLog b/ChangeLog
index 3f56fa2..3a4f05c 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,8 @@
+2003-07-18 Don Porter <dgp@users.sourceforge.net>
+
+ * doc/CrtSlave.3 (Tcl_MakeSafe): Removed warning about possible
+ deprecation (no TIP on that).
+
2003-07-17 Daniel Steffen <das@users.sourceforge.net>
* macosx/Makefile: added var to allow overriding of tclsh used
@@ -76,8 +81,8 @@
2003-07-15 Don Porter <dgp@users.sourceforge.net>
- * doc/http.n: Updated SYNOPSIS to match actual syntax of
- commands. [Bug 756112]
+ * doc/http.n: Updated SYNOPSIS to match actual syntax of
+ commands. [Bug 756112]
* unix/dltest/pkga.c: Updated to not use Tcl_UtfNcmp and counted
strings instead of strcmp (not defined in any #include'd header)
diff --git a/doc/CrtSlave.3 b/doc/CrtSlave.3
index 9ad0f51..bb5b857 100644
--- a/doc/CrtSlave.3
+++ b/doc/CrtSlave.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: CrtSlave.3,v 1.8.2.1 2003/07/16 21:31:52 dkf Exp $
+'\" RCS: @(#) $Id: CrtSlave.3,v 1.8.2.2 2003/07/18 15:20:51 dgp Exp $
'\"
.so man.macros
.TH Tcl_CreateSlave 3 7.6 Tcl "Tcl Library Procedures"
@@ -146,10 +146,9 @@ potentially-unsafe core functionality (both commands and variables)
from \fIinterp\fR. However, it cannot know what parts of an extension
or application are safe and does not make any attempt to remove those
parts, so safety is not guaranteed after calling \fBTcl_MakeSafe\fR.
-For this reason, this function should not be called by new code and is
-likely to be deprecated or removed in a future version of Tcl. Safe
-interpreters can be obtained by using \fBTcl_CreateSlave\fR instead,
-which creates interpreters in a known-safe state.
+Callers will want to take care with their use of \fBTcl_MakeSafe\fR
+to avoid false claims of safety. For many situations, \fBTcl_CreateSlave\fR
+may be a better choice, since it creates interpreters in a known-safe state.
.PP
\fBTcl_GetSlave\fR returns a pointer to a slave interpreter of
\fIinterp\fR. The slave interpreter is identified by \fIslaveName\fR.
diff --git a/doc/CrtTrace.3 b/doc/CrtTrace.3
index 17a688d..f0d4d7a 100644
--- a/doc/CrtTrace.3
+++ b/doc/CrtTrace.3
@@ -6,7 +6,7 @@
'\" See the file "license.terms" for information on usage and redistribution
'\" of this file, and for a DISCLAIMER OF ALL WARRANTIES.
'\"
-'\" RCS: @(#) $Id: CrtTrace.3,v 1.6 2002/08/05 03:24:39 dgp Exp $
+'\" RCS: @(#) $Id: CrtTrace.3,v 1.6.2.1 2003/07/18 15:20:51 dgp Exp $
'\"
.so man.macros
.TH Tcl_CreateTrace 3 "" Tcl "Tcl Library Procedures"
@@ -47,7 +47,7 @@ details on the calling sequence.
Arbitrary one-word value to pass to \fIobjProc\fR or \fIproc\fR.
.AP Tcl_CmdObjTraceDeleteProc *deleteProc
Procedure to call when the trace is deleted. See below for details of
-the calling sequence. A null pointer is permissible and results in no
+the calling sequence. A NULL pointer is permissible and results in no
callback when the trace is deleted.
.AP Tcl_Trace trace in
Token for trace to be removed (return value from previous call
diff --git a/doc/GetIndex.3 b/doc/GetIndex.3
index 8ac4975..82f978a 100644
--- a/doc/GetIndex.3
+++ b/doc/GetIndex.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: GetIndex.3,v 1.10 2002/02/28 05:11:25 dgp Exp $
+'\" RCS: @(#) $Id: GetIndex.3,v 1.10.2.1 2003/07/18 15:20:51 dgp Exp $
'\"
.so man.macros
.TH Tcl_GetIndexFromObj 3 8.1 Tcl "Tcl Library Procedures"
@@ -34,11 +34,11 @@ The string value of this object is used to search through \fItablePtr\fR.
The internal representation is modified to hold the index of the matching
table entry.
.AP "CONST char" **tablePtr in
-An array of null-terminated ASCII strings. The end of the array is marked
+An array of null-terminated strings. The end of the array is marked
by a NULL string pointer.
.AP "CONST VOID" *structTablePtr in
An array of arbitrary type, typically some \fBstruct\fP type.
-The first member of the structure must be a null-terminated ASCII string.
+The first member of the structure must be a null-terminated string.
The size of the structure is given by \fIoffset\fP.
.VS
.AP int offset in