diff options
author | andreas_kupries <akupries@shaw.ca> | 2005-01-21 17:42:00 (GMT) |
---|---|---|
committer | andreas_kupries <akupries@shaw.ca> | 2005-01-21 17:42:00 (GMT) |
commit | 2587836dd5f442ad7f95eb68cd40e56545b72663 (patch) | |
tree | 992920c5918e4214ed28883f8f9345c479733dbd | |
parent | 59d4795f9bae048885a792b1d68ad392e17c43b5 (diff) | |
download | tcl-2587836dd5f442ad7f95eb68cd40e56545b72663.zip tcl-2587836dd5f442ad7f95eb68cd40e56545b72663.tar.gz tcl-2587836dd5f442ad7f95eb68cd40e56545b72663.tar.bz2 |
* generic/tclThread.c: Typo police. Fixed some nits
* generic/tclCmdAH.c: in header comments of functions.
* generic/tclBasic.c: (Missing --).
* generic/tclFileName.c:
-rw-r--r-- | ChangeLog | 7 | ||||
-rw-r--r-- | generic/tclBasic.c | 4 | ||||
-rw-r--r-- | generic/tclCmdAH.c | 4 | ||||
-rw-r--r-- | generic/tclFileName.c | 4 | ||||
-rw-r--r-- | generic/tclThread.c | 6 |
5 files changed, 16 insertions, 9 deletions
@@ -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. |