summaryrefslogtreecommitdiffstats
path: root/doc/Encoding.3
diff options
context:
space:
mode:
authordkf <donal.k.fellows@manchester.ac.uk>2004-10-07 14:52:43 (GMT)
committerdkf <donal.k.fellows@manchester.ac.uk>2004-10-07 14:52:43 (GMT)
commit4d7bec4bb09136c9340a8506acb17ce671efbd20 (patch)
tree74c3efa8cc8c762bf136d956684048cdb8988548 /doc/Encoding.3
parentd4961998794e12b24a57463f33d6d1976477cde3 (diff)
downloadtcl-4d7bec4bb09136c9340a8506acb17ce671efbd20.zip
tcl-4d7bec4bb09136c9340a8506acb17ce671efbd20.tar.gz
tcl-4d7bec4bb09136c9340a8506acb17ce671efbd20.tar.bz2
Convert (most) tabs to spaces because they're printed more reliably
Diffstat (limited to 'doc/Encoding.3')
-rw-r--r--doc/Encoding.324
1 files changed, 12 insertions, 12 deletions
diff --git a/doc/Encoding.3 b/doc/Encoding.3
index 99be49e..658f081 100644
--- a/doc/Encoding.3
+++ b/doc/Encoding.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: Encoding.3,v 1.18 2004/10/07 14:44:32 dkf Exp $
+'\" RCS: @(#) $Id: Encoding.3,v 1.19 2004/10/07 14:52:43 dkf Exp $
'\"
.so man.macros
.TH Tcl_GetEncoding 3 "8.1" Tcl "Tcl Library Procedures"
@@ -338,16 +338,16 @@ type \fBTcl_EncodingConvertProc\fR:
.PP
.CS
typedef int Tcl_EncodingConvertProc(
- ClientData \fIclientData\fR,
- CONST char *\fIsrc\fR,
- int \fIsrcLen\fR,
- int \fIflags\fR,
- Tcl_EncodingState *\fIstatePtr\fR,
- char *\fIdst\fR,
- int \fIdstLen\fR,
- int *\fIsrcReadPtr\fR,
- int *\fIdstWrotePtr\fR,
- int *\fIdstCharsPtr\fR);
+ ClientData \fIclientData\fR,
+ CONST char *\fIsrc\fR,
+ int \fIsrcLen\fR,
+ int \fIflags\fR,
+ Tcl_EncodingState *\fIstatePtr\fR,
+ char *\fIdst\fR,
+ int \fIdstLen\fR,
+ int *\fIsrcReadPtr\fR,
+ int *\fIdstWrotePtr\fR,
+ int *\fIdstCharsPtr\fR);
.CE
.PP
The \fItoUtfProc\fR and \fIfromUtfProc\fR procedures are called by the
@@ -369,7 +369,7 @@ The callback procedure \fIfreeProc\fR, if non-NULL, should match the type
\fBTcl_EncodingFreeProc\fR:
.CS
typedef void Tcl_EncodingFreeProc(
- ClientData \fIclientData\fR);
+ ClientData \fIclientData\fR);
.CE
.PP
This \fIfreeProc\fR function is called when the encoding is deleted. The