summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMiguel Sofer <miguel.sofer@gmail.com>2001-12-14 20:31:21 (GMT)
committerMiguel Sofer <miguel.sofer@gmail.com>2001-12-14 20:31:21 (GMT)
commit43ebb993dc8d1553b9f8fa710987410e33102b24 (patch)
treef0ea955edd55e7ec3cefbc5971903856f30a4b87
parent47109e8be05c52fd33c2a67b1929ed3c19479787 (diff)
downloadtcl-43ebb993dc8d1553b9f8fa710987410e33102b24.zip
tcl-43ebb993dc8d1553b9f8fa710987410e33102b24.tar.gz
tcl-43ebb993dc8d1553b9f8fa710987410e33102b24.tar.bz2
docs and comments corrections [Bug 493412]
-rw-r--r--ChangeLog7
-rw-r--r--doc/CrtInterp.38
-rw-r--r--generic/tclBasic.c6
3 files changed, 14 insertions, 7 deletions
diff --git a/ChangeLog b/ChangeLog
index f843806..ac3f2a3 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,10 @@
+2001-12-11 Miguel Sofer <msofer@users.sourceforge.net>
+
+ * doc/CrtInterp.3:
+ * generic/tclBasic.c: docs and comments corrections [Bug 493412]
+ Bug & patch by Don Porter.
+
+
2001-12-14 Donal K. Fellows <fellowsd@cs.man.ac.uk>
* win/tclWinNotify.c (Tcl_FinalizeNotifier): Stop Tcl on Windows
diff --git a/doc/CrtInterp.3 b/doc/CrtInterp.3
index f82e225..4e8572d 100644
--- a/doc/CrtInterp.3
+++ b/doc/CrtInterp.3
@@ -5,7 +5,7 @@
'\" See the file "license.terms" for information on usage and redistribution
'\" of this file, and for a DISCLAIMER OF ALL WARRANTIES.
'\"
-'\" RCS: @(#) $Id: CrtInterp.3,v 1.5 2000/04/14 23:01:49 hobbs Exp $
+'\" RCS: @(#) $Id: CrtInterp.3,v 1.6 2001/12/14 20:31:22 msofer Exp $
'\"
.so man.macros
.TH Tcl_CreateInterp 3 7.5 Tcl "Tcl Library Procedures"
@@ -38,9 +38,9 @@ procedures, such as \fBTcl_CreateCommand\fR, \fBTcl_Eval\fR, and
Clients are only allowed to access a few of the fields of
Tcl_Interp structures; see the \fBTcl_Interp\fR
and \fBTcl_CreateCommand\fR man pages for details.
-The new interpreter is initialized with no defined variables and only
-the built-in Tcl commands. To bind in additional commands, call
-\fBTcl_CreateCommand\fR.
+The new interpreter is initialized with the built-in Tcl commands
+and with the variables documented in tclvars(n). To bind in
+additional commands, call \fBTcl_CreateCommand\fR.
.PP
\fBTcl_DeleteInterp\fR marks an interpreter as deleted; the interpreter
will eventually be deleted when all calls to \fBTcl_Preserve\fR for it have
diff --git a/generic/tclBasic.c b/generic/tclBasic.c
index ab9e1f0..0cf25fc 100644
--- a/generic/tclBasic.c
+++ b/generic/tclBasic.c
@@ -13,7 +13,7 @@
* See the file "license.terms" for information on usage and redistribution
* of this file, and for a DISCLAIMER OF ALL WARRANTIES.
*
- * RCS: @(#) $Id: tclBasic.c,v 1.42 2001/11/21 17:17:17 dgp Exp $
+ * RCS: @(#) $Id: tclBasic.c,v 1.43 2001/12/14 20:31:22 msofer Exp $
*/
#include "tclInt.h"
@@ -256,8 +256,8 @@ static CmdInfo builtInCmds[] = {
* Tcl_DeleteInterp.
*
* Side effects:
- * The command interpreter is initialized with an empty variable
- * table and the built-in commands.
+ * The command interpreter is initialized with the built-in commands
+ * and with the variables documented in tclvars(n).
*
*----------------------------------------------------------------------
*/