summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--ChangeLog7
-rw-r--r--generic/tclBasic.c4
-rw-r--r--generic/tclCmdAH.c4
-rw-r--r--generic/tclFileName.c4
-rw-r--r--generic/tclThread.c6
5 files changed, 16 insertions, 9 deletions
diff --git a/ChangeLog b/ChangeLog
index 5fbfb74..d57b049 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,10 @@
+2005-01-21 Andreas Kupries <andreask@activestate.com>
+
+ * generic/tclThread.c: Typo police. Fixed some nits
+ * generic/tclCmdAH.c: in header comments of functions.
+ * generic/tclBasic.c: (Missing --).
+ * generic/tclFileName.c:
+
2005-01-21 Donal K. Fellows <donal.k.fellows@man.ac.uk>
* doc/FileSystem.3: Add missing ARGUMENTS section definitions for
diff --git a/generic/tclBasic.c b/generic/tclBasic.c
index 22ce3c6..0e59e99 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.138 2005/01/19 23:15:14 dkf Exp $
+ * RCS: @(#) $Id: tclBasic.c,v 1.139 2005/01/21 17:42:11 andreas_kupries Exp $
*/
#include "tclInt.h"
@@ -4642,7 +4642,7 @@ Tcl_AllowExceptions(interp)
/*
*----------------------------------------------------------------------
*
- * Tcl_GetVersion
+ * Tcl_GetVersion --
*
* Get the Tcl major, minor, and patchlevel version numbers and
* the release type. A patch is a release type TCL_FINAL_RELEASE
diff --git a/generic/tclCmdAH.c b/generic/tclCmdAH.c
index 108ea72..8a76602 100644
--- a/generic/tclCmdAH.c
+++ b/generic/tclCmdAH.c
@@ -11,7 +11,7 @@
* See the file "license.terms" for information on usage and redistribution
* of this file, and for a DISCLAIMER OF ALL WARRANTIES.
*
- * RCS: @(#) $Id: tclCmdAH.c,v 1.57 2004/11/13 00:19:07 dgp Exp $
+ * RCS: @(#) $Id: tclCmdAH.c,v 1.58 2005/01/21 17:42:12 andreas_kupries Exp $
*/
#include "tclInt.h"
@@ -374,7 +374,7 @@ Tcl_ConcatObjCmd(dummy, interp, objc, objv)
/*
*----------------------------------------------------------------------
*
- * Tcl_ContinueObjCmd -
+ * Tcl_ContinueObjCmd --
*
* This procedure is invoked to process the "continue" Tcl command.
* See the user documentation for details on what it does.
diff --git a/generic/tclFileName.c b/generic/tclFileName.c
index 00f58d0..cf487a5 100644
--- a/generic/tclFileName.c
+++ b/generic/tclFileName.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: tclFileName.c,v 1.61 2005/01/17 10:40:34 vincentdarley Exp $
+ * RCS: @(#) $Id: tclFileName.c,v 1.62 2005/01/21 17:42:14 andreas_kupries Exp $
*/
#include "tclInt.h"
@@ -2308,7 +2308,7 @@ DoGlob(interp, matchesObj, separators, pathPtr, flags, pattern, types)
/*
*---------------------------------------------------------------------------
*
- * Tcl_AllocStatBuf
+ * Tcl_AllocStatBuf --
*
* This procedure allocates a Tcl_StatBuf on the heap. It exists
* so that extensions may be used unchanged on systems where
diff --git a/generic/tclThread.c b/generic/tclThread.c
index 7cc8b68..ab079c1 100644
--- a/generic/tclThread.c
+++ b/generic/tclThread.c
@@ -9,7 +9,7 @@
* See the file "license.terms" for information on usage and redistribution
* of this file, and for a DISCLAIMER OF ALL WARRANTIES.
*
- * RCS: @(#) $Id: tclThread.c,v 1.8 2004/06/24 01:29:02 mistachkin Exp $
+ * RCS: @(#) $Id: tclThread.c,v 1.9 2005/01/21 17:42:27 andreas_kupries Exp $
*/
#include "tclInt.h"
@@ -309,7 +309,7 @@ TclRememberMutex(mutexPtr)
/*
*----------------------------------------------------------------------
*
- * Tcl_MutexFinalize
+ * Tcl_MutexFinalize --
*
* Finalize a single mutex and remove it from the
* list of remembered objects.
@@ -382,7 +382,7 @@ TclRememberCondition(condPtr)
/*
*----------------------------------------------------------------------
*
- * Tcl_ConditionFinalize
+ * Tcl_ConditionFinalize --
*
* Finalize a single condition variable and remove it from the
* list of remembered objects.