summaryrefslogtreecommitdiffstats
path: root/tools/man2help.tcl
diff options
context:
space:
mode:
authorhobbs <hobbs@noemail.net>2001-11-10 02:34:56 (GMT)
committerhobbs <hobbs@noemail.net>2001-11-10 02:34:56 (GMT)
commitc0ccd9d1f4581848769b5cc3727b4eacd0f14086 (patch)
tree87b6d868316b27db3613ea276a5d339ace2715f3 /tools/man2help.tcl
parent3d965649216c16e536258cccf7412692e8b56723 (diff)
downloadtcl-c0ccd9d1f4581848769b5cc3727b4eacd0f14086.zip
tcl-c0ccd9d1f4581848769b5cc3727b4eacd0f14086.tar.gz
tcl-c0ccd9d1f4581848769b5cc3727b4eacd0f14086.tar.bz2
fixed winhelp generation problems #480268
FossilOrigin-Name: 43e53c34e0e9e9f7bd78c4d7d128722657c71d21
Diffstat (limited to 'tools/man2help.tcl')
-rw-r--r--tools/man2help.tcl4
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
}
}