diff options
Diffstat (limited to 'doc/Encoding.3')
| -rw-r--r-- | doc/Encoding.3 | 9 | 
1 files changed, 6 insertions, 3 deletions
| diff --git a/doc/Encoding.3 b/doc/Encoding.3 index a824b2f..1478c35 100644 --- a/doc/Encoding.3 +++ b/doc/Encoding.3 @@ -4,10 +4,8 @@  '\" 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.30 2008/06/29 22:28:24 dkf Exp $ -'\"  -.so man.macros  .TH Tcl_GetEncoding 3 "8.1" Tcl "Tcl Library Procedures" +.so man.macros  .BS  .SH NAME  Tcl_GetEncoding, Tcl_FreeEncoding, Tcl_GetEncodingFromObj, Tcl_ExternalToUtfDString, Tcl_ExternalToUtf, Tcl_UtfToExternalDString, Tcl_UtfToExternal, Tcl_WinTCharToUtf, Tcl_WinUtfToTChar, Tcl_GetEncodingName, Tcl_SetSystemEncoding, Tcl_GetEncodingNameFromEnvironment, Tcl_GetEncodingNames, Tcl_CreateEncoding, Tcl_GetEncodingSearchPath, Tcl_SetEncodingSearchPath, Tcl_GetDefaultEncodingDir, Tcl_SetDefaultEncodingDir \- procedures for creating and using encodings @@ -282,6 +280,7 @@ and the  interfaces when running on Windows 95, you would have  to perform the following type of test over and over in your program  (as represented in pseudo-code): +.PP  .CS  if (running NT) {      encoding <- Tcl_GetEncoding("unicode"); @@ -291,6 +290,7 @@ if (running NT) {      nativeBuffer <- Tcl_UtfToExternal(NULL, utfBuffer);  }  .CE +.PP  \fBTcl_WinUtfToTChar\fR and \fBTcl_WinTCharToUtf\fR automatically  handle this test and use the proper encoding based on the current  operating system.  \fBTcl_WinUtfToTChar\fR returns a pointer to @@ -412,6 +412,7 @@ procedure will be a non-NULL location.  .PP  The callback procedure \fIfreeProc\fR, if non-NULL, should match the type   \fBTcl_EncodingFreeProc\fR: +.PP  .CS  typedef void \fBTcl_EncodingFreeProc\fR(          ClientData \fIclientData\fR); @@ -488,6 +489,7 @@ Cases [1], [2], and [3] are collectively referred to as table-based encoding  files.  The lines in a table-based encoding file are in the same  format as this example taken from the \fBshiftjis\fR encoding (this is not  the complete file): +.PP  .CS  # Encoding file: shiftjis, multi-byte  M @@ -553,6 +555,7 @@ If all characters on a page would map to 0000, that page can be omitted.  Case [4] is the escape-sequence encoding file.  The lines in an this type of  file are in the same format as this example taken from the \fBiso2022-jp\fR  encoding: +.PP  .CS  .ta 1.5i  # Encoding file: iso2022-jp, escape-driven | 
