summaryrefslogtreecommitdiffstats
path: root/doc/binary.n
diff options
context:
space:
mode:
authordkf <donal.k.fellows@manchester.ac.uk>2007-10-25 14:07:32 (GMT)
committerdkf <donal.k.fellows@manchester.ac.uk>2007-10-25 14:07:32 (GMT)
commit7b06bea8377025d0d73731d4332f1140468cf591 (patch)
tree0e660cbc492cc517cdb96ccda600880206d36ea7 /doc/binary.n
parented0c8a767f3b6a927a1e1d12964173a66341caee (diff)
downloadtcl-7b06bea8377025d0d73731d4332f1140468cf591.zip
tcl-7b06bea8377025d0d73731d4332f1140468cf591.tar.gz
tcl-7b06bea8377025d0d73731d4332f1140468cf591.tar.bz2
More GOOBE quoting
Diffstat (limited to 'doc/binary.n')
-rw-r--r--doc/binary.n11
1 files changed, 7 insertions, 4 deletions
diff --git a/doc/binary.n b/doc/binary.n
index f6598a4..e98917b 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.30 2007/10/24 14:29:38 dkf Exp $
+'\" RCS: @(#) $Id: binary.n,v 1.31 2007/10/25 14:07:32 dkf Exp $
'\"
.so man.macros
.TH binary n 8.0 Tcl "Tcl Built-In Commands"
@@ -396,7 +396,8 @@ position to satisfy the current field specifier, then the
corresponding variable is left untouched and \fBbinary scan\fR returns
immediately with the number of variables that were set. If there are
not enough arguments for all of the fields in the format string that
-consume arguments, then an error is generated. The flag character 'u'
+consume arguments, then an error is generated. The flag character
+.QW u
may be given to cause some types to be read as unsigned values. The flag
is accepted for all field types but is ignored for non-integer fields.
.PP
@@ -435,8 +436,10 @@ will be sign extended. Thus the following will occur:
set signShort [\fBbinary format\fR s1 0x8000]
\fBbinary scan\fR $signShort s1 val; \fI# val == 0xFFFF8000\fR
.CE
-If you require unsigned values you can include the 'u' flag character following
-the field type. For example, to read an unsigned short value:
+If you require unsigned values you can include the
+.QW u
+flag character following the field type. For example, to read an
+unsigned short value:
.CS
set signShort [\fBbinary format\fR s1 0x8000]
\fBbinary scan\fR $signShort su1 val; \fI# val == 0x00008000\fR