diff options
author | dkf <donal.k.fellows@manchester.ac.uk> | 2009-01-05 14:04:51 (GMT) |
---|---|---|
committer | dkf <donal.k.fellows@manchester.ac.uk> | 2009-01-05 14:04:51 (GMT) |
commit | 2bd21827f89256fadc04c51eaba0c8b82bdcc75b (patch) | |
tree | b4484e253625a529303bdb49309c43f454b6b74f /doc | |
parent | 529b3009a5528d1afe122d5fae4b5c739b4618fb (diff) | |
download | tcl-2bd21827f89256fadc04c51eaba0c8b82bdcc75b.zip tcl-2bd21827f89256fadc04c51eaba0c8b82bdcc75b.tar.gz tcl-2bd21827f89256fadc04c51eaba0c8b82bdcc75b.tar.bz2 |
Convert tabs to spaces for reliable display with nroff
Diffstat (limited to 'doc')
-rw-r--r-- | doc/fcopy.n | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/doc/fcopy.n b/doc/fcopy.n index c4eaae2..1178093 100644 --- a/doc/fcopy.n +++ b/doc/fcopy.n @@ -5,7 +5,7 @@ '\" See the file "license.terms" for information on usage and redistribution '\" of this file, and for a DISCLAIMER OF ALL WARRANTIES. '\" -'\" RCS: @(#) $Id: fcopy.n,v 1.18 2008/10/17 10:22:25 dkf Exp $ +'\" RCS: @(#) $Id: fcopy.n,v 1.19 2009/01/05 14:04:51 dkf Exp $ '\" .so man.macros .TH fcopy n 8.0 Tcl "Tcl Built-In Commands" @@ -118,7 +118,7 @@ proc Cleanup {in out bytes {error {}}} { close $in close $out if {[string length $error] != 0} { - # error occurred during the copy + # error occurred during the copy } } set in [open $file1] @@ -135,11 +135,11 @@ proc CopyMore {in out chunk bytes {error {}}} { global total done incr total $bytes if {([string length $error] != 0) || [eof $in]} { - set done $total - close $in - close $out + set done $total + close $in + close $out } else { - \fBfcopy\fR $in $out -size $chunk \e + \fBfcopy\fR $in $out -size $chunk \e -command [list CopyMore $in $out $chunk] } } |