diff options
author | hobbs <hobbs> | 2001-11-10 02:34:57 (GMT) |
---|---|---|
committer | hobbs <hobbs> | 2001-11-10 02:34:57 (GMT) |
commit | 0c15536070d7941a5ef3c7eaf851a5e3a390b027 (patch) | |
tree | 87b6d868316b27db3613ea276a5d339ace2715f3 /tools/man2help.tcl | |
parent | c5392471933876bb9cbe86b7fce3b3dc579d7ecd (diff) | |
download | tcl-0c15536070d7941a5ef3c7eaf851a5e3a390b027.zip tcl-0c15536070d7941a5ef3c7eaf851a5e3a390b027.tar.gz tcl-0c15536070d7941a5ef3c7eaf851a5e3a390b027.tar.bz2 |
fixed winhelp generation problems #480268
Diffstat (limited to 'tools/man2help.tcl')
-rw-r--r-- | tools/man2help.tcl | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/tools/man2help.tcl b/tools/man2help.tcl index 130fde2..2422468 100644 --- a/tools/man2help.tcl +++ b/tools/man2help.tcl @@ -6,7 +6,7 @@ # # Copyright (c) 1996 by Sun Microsystems, Inc. # -# RCS: @(#) $Id: man2help.tcl,v 1.7 2000/11/24 14:17:12 dkf Exp $ +# RCS: @(#) $Id: man2help.tcl,v 1.8 2001/11/10 02:34:57 hobbs Exp $ # # @@ -99,7 +99,7 @@ proc doFile {file} { proc doDir dir { puts "Generating man pages for $dir..." foreach f [lsort [glob -directory $dir "*.\[13n\]"]] { - do $f + doFile $f } } |