diff options
| author | donal.k.fellows@manchester.ac.uk <dkf> | 2004-10-27 09:36:58 (GMT) |
|---|---|---|
| committer | donal.k.fellows@manchester.ac.uk <dkf> | 2004-10-27 09:36:58 (GMT) |
| commit | 4b40792743ceeeaa98da3651c95e7975825aa681 (patch) | |
| tree | 2f66883fc243d05145536a48036f61275d482016 /doc/binary.n | |
| parent | 97c3859e0409242d549f3cfd1628cb8b42ac3a84 (diff) | |
| download | tcl-4b40792743ceeeaa98da3651c95e7975825aa681.zip tcl-4b40792743ceeeaa98da3651c95e7975825aa681.tar.gz tcl-4b40792743ceeeaa98da3651c95e7975825aa681.tar.bz2 | |
Many minor doc fixes
Diffstat (limited to 'doc/binary.n')
| -rw-r--r-- | doc/binary.n | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/doc/binary.n b/doc/binary.n index 2c66eef..54bf6c4 100644 --- a/doc/binary.n +++ b/doc/binary.n @@ -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: binary.n,v 1.20 2004/08/31 15:19:35 dkf Exp $ +'\" RCS: @(#) $Id: binary.n,v 1.21 2004/10/27 09:36:58 dkf Exp $ '\" .so man.macros .TH binary n 8.0 Tcl "Tcl Built-In Commands" @@ -745,21 +745,21 @@ universal. To transfer floating-point numbers portably between all architectures, use their textual representation (as produced by \fBformat\fR) instead. .SH EXAMPLES -This is a procedure write a Tcl string to a binary-encoded channel as +This is a procedure to write a Tcl string to a binary-encoded channel as UTF-8 data preceded by a length word: .CS proc writeString {channel string} { set data [encoding convertto utf-8 $string] - puts -nonewline [binary format Ia* \e + puts -nonewline [\fBbinary\fR format Ia* \e [string length $data] $data] } .CE - +.PP This procedure reads a string from a channel that was written by the previously presented \fBwriteString\fR procedure: .CS proc readString {channel} { - if {![binary scan [read $channel 4] I length]} { + if {![\fBbinary\fR scan [read $channel 4] I length]} { error "missing length" } set data [read $channel $length] |
