summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authordas <das@noemail.net>2003-07-14 08:01:46 (GMT)
committerdas <das@noemail.net>2003-07-14 08:01:46 (GMT)
commit491215665590e8cfc1eba067171fd53d31953de6 (patch)
tree30e646a7cd5ea9491bda7cfadf568b30192d1b32
parent17839df654df600309de97d52d54281efdf1ea44 (diff)
downloadtcl-491215665590e8cfc1eba067171fd53d31953de6.zip
tcl-491215665590e8cfc1eba067171fd53d31953de6.tar.gz
tcl-491215665590e8cfc1eba067171fd53d31953de6.tar.bz2
typo fixes from trunk
FossilOrigin-Name: 82f2ada59d5ecb5521466b8ca45747b77b526bea
-rw-r--r--doc/binary.n10
1 files changed, 5 insertions, 5 deletions
diff --git a/doc/binary.n b/doc/binary.n
index 80a6460..7e7e025 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.11.2.3 2003/07/11 21:18:55 dkf Exp $
+'\" RCS: @(#) $Id: binary.n,v 1.11.2.4 2003/07/14 08:01:47 das Exp $
'\"
.so man.macros
.TH binary n 8.0 Tcl "Tcl Built-In Commands"
@@ -67,8 +67,8 @@ the following characters:
Stores a character string of length \fIcount\fR in the output string.
Every character is taken as modulo 256 (i.e. the low byte of every
character is used, and the high byte discarded) so when storing
-character strings not wholly expressible using the characters
-\bu0000-\bu00ff, the \fBencoding convertto\fR command should be used
+character strings not wholly expressible using the characters \\u0000-\\u00ff,
+the \fBencoding convertto\fR command should be used
first if this truncation is not desired (i.e. if the characters are
not part of the ISO 8859-1 character set.)
If \fIarg\fR has fewer than \fIcount\fR bytes, then additional zero
@@ -390,8 +390,8 @@ The data is a character string of length \fIcount\fR. If \fIcount\fR
is \fB*\fR, then all of the remaining bytes in \fIstring\fR will be
scanned into the variable. If \fIcount\fR is omitted, then one
character will be scanned.
-All characters scanned will be interpreted as being in the range
-\bu0000-\bu00ff so the \fBencoding convertfrom\fR command might be
+All characters scanned will be interpreted as being in the
+range \\u0000-\\u00ff so the \fBencoding convertfrom\fR command might be
needed if the string is not an ISO 8859\-1 string.
For example,
.RS