summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authordavidw <davidw>2005-02-05 09:15:37 (GMT)
committerdavidw <davidw>2005-02-05 09:15:37 (GMT)
commitf198740c86117c5d124f1131ff3127ba20141c68 (patch)
tree99f62246f61c53c8fedf039c2fa392f4fc34823e
parente5de9528c47b0d8428ea81f5fbb9da883158b435 (diff)
downloadtcl-f198740c86117c5d124f1131ff3127ba20141c68.zip
tcl-f198740c86117c5d124f1131ff3127ba20141c68.tar.gz
tcl-f198740c86117c5d124f1131ff3127ba20141c68.tar.bz2
* doc/Thread.3: Fixed sentence describing flags for Tcl_CreateThread.
* doc/FileSystem.3: Cleaned up typo in Tcl_FSNewNativePath documentation. * generic/tclPathObj.c: Cleaned up typo in comment.
-rw-r--r--ChangeLog10
-rw-r--r--doc/FileSystem.34
-rw-r--r--doc/Thread.36
-rw-r--r--generic/tclPathObj.c4
4 files changed, 17 insertions, 7 deletions
diff --git a/ChangeLog b/ChangeLog
index eb0b741..66fd08a 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,13 @@
+2005-02-05 David N. Welton <davidw@dedasys.com>
+
+ * doc/Thread.3: Fixed sentence describing flags for
+ Tcl_CreateThread.
+
+ * doc/FileSystem.3: Cleaned up typo in Tcl_FSNewNativePath
+ documentation.
+
+ * generic/tclPathObj.c: Cleaned up typo in comment.
+
2005-02-02 Mo DeJong <mdejong@users.sourceforge.net>
* generic/tclProc.c (TclInitCompiledLocals):
diff --git a/doc/FileSystem.3 b/doc/FileSystem.3
index abf9780..1b98cb2 100644
--- a/doc/FileSystem.3
+++ b/doc/FileSystem.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: FileSystem.3,v 1.51 2005/01/21 09:18:02 dkf Exp $
+'\" RCS: @(#) $Id: FileSystem.3,v 1.52 2005/02/05 09:15:41 davidw Exp $
'\"
.so man.macros
.TH Filesystem 3 8.4 Tcl "Tcl Library Procedures"
@@ -618,7 +618,7 @@ which must store it or call \fBckfree\fR to ensure it is freed. Again,
\fBTcl_FSGetNormalizedPath\fR or \fBTcl_GetNativePath\fR are usually
better functions to use for most purposes.
.PP
-\fBTcl_FSNewNativePath\fR performs something like that reverse of the
+\fBTcl_FSNewNativePath\fR performs something like the reverse of the
usual obj->path->nativerep conversions. If some code retrieves a path
in native form (from, e.g. \fBreadlink\fR or a native dialog), and that path
is to be used at the Tcl level, then calling this function is an
diff --git a/doc/Thread.3 b/doc/Thread.3
index c9ec694..069a9c3 100644
--- a/doc/Thread.3
+++ b/doc/Thread.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: Thread.3,v 1.21 2004/12/07 00:00:57 hobbs Exp $
+'\" RCS: @(#) $Id: Thread.3,v 1.22 2005/02/05 09:15:42 davidw Exp $
'\"
.so man.macros
.TH Threads 3 "8.1" Tcl "Tcl Library Procedures"
@@ -96,8 +96,8 @@ caller can determine the size of the stack given to the new thread and
modify the behaviour through the supplied \fIflags\fR. The value
\fBTCL_THREAD_STACK_DEFAULT\fR for the \fIstackSize\fR indicates that
the default size as specified by the operating system is to be used
-for the new thread. As for the flags, currently are only the values
-\fBTCL_THREAD_NOFLAGS\fR and \fBTCL_THREAD_JOINABLE\fR defined. The
+for the new thread. As for the flags, currently only the values
+\fBTCL_THREAD_NOFLAGS\fR and \fBTCL_THREAD_JOINABLE\fR are defined. The
first of them invokes the default behaviour with no
specialties. Using the second value marks the new thread as
\fIjoinable\fR. This means that another thread can wait for the such
diff --git a/generic/tclPathObj.c b/generic/tclPathObj.c
index 54116a9..5a57477 100644
--- a/generic/tclPathObj.c
+++ b/generic/tclPathObj.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: tclPathObj.c,v 1.39 2004/12/02 18:49:21 vincentdarley Exp $
+ * RCS: @(#) $Id: tclPathObj.c,v 1.40 2005/02/05 09:15:42 davidw Exp $
*/
#include "tclInt.h"
@@ -1416,7 +1416,7 @@ TclFSMakePathFromNormalized(interp, pathPtr, nativeRep)
*
* Tcl_FSNewNativePath --
*
- * This function performs the something like that reverse of the
+ * This function performs the something like the reverse of the
* usual obj->path->nativerep conversions. If some code retrieves
* a path in native form (from, e.g. readlink or a native dialog),
* and that path is to be used at the Tcl level, then calling