diff options
author | mdejong <mdejong> | 2002-03-11 20:43:06 (GMT) |
---|---|---|
committer | mdejong <mdejong> | 2002-03-11 20:43:06 (GMT) |
commit | 70776b7083ad2d54978020376eeb1ea072067931 (patch) | |
tree | 339d51fb4c46163dc13fbb938860b8de72f7391f /generic/tclEncoding.c | |
parent | 8b3a9add00d4556ba71d2f30332e4db6fcf23307 (diff) | |
download | tcl-70776b7083ad2d54978020376eeb1ea072067931.zip tcl-70776b7083ad2d54978020376eeb1ea072067931.tar.gz tcl-70776b7083ad2d54978020376eeb1ea072067931.tar.bz2 |
* generic/tclEncoding.c: Fix typo in comment.
* generic/tclIO.c (DoReadChars, ReadBytes, ReadChars):
Use NULL value instead of pointer set to NULL to make
things more clear. Reorder arguments so that they
match the function signatures. Cleanup little typos
and add more descriptive comment.
Diffstat (limited to 'generic/tclEncoding.c')
-rw-r--r-- | generic/tclEncoding.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/generic/tclEncoding.c b/generic/tclEncoding.c index b974e04..b61c92d 100644 --- a/generic/tclEncoding.c +++ b/generic/tclEncoding.c @@ -8,7 +8,7 @@ * See the file "license.terms" for information on usage and redistribution * of this file, and for a DISCLAIMER OF ALL WARRANTIES. * - * RCS: @(#) $Id: tclEncoding.c,v 1.11 2002/03/04 22:00:39 hobbs Exp $ + * RCS: @(#) $Id: tclEncoding.c,v 1.12 2002/03/11 20:43:07 mdejong Exp $ */ #include "tclInt.h" @@ -835,7 +835,7 @@ Tcl_ExternalToUtfDString(encoding, src, srcLen, dstPtr) * * Tcl_ExternalToUtf -- * - * Convert a source buffer from the specified encoding into UTF-8, + * Convert a source buffer from the specified encoding into UTF-8. * * Results: * The return value is one of TCL_OK, TCL_CONVERT_MULTIBYTE, |