diff options
author | jan.nijtmans <nijtmans@users.sourceforge.net> | 2015-09-02 09:02:53 (GMT) |
---|---|---|
committer | jan.nijtmans <nijtmans@users.sourceforge.net> | 2015-09-02 09:02:53 (GMT) |
commit | 3274fc31fdb95d7c58b22b554e4418090ea8f0b0 (patch) | |
tree | 635acee6a7924d49d3eff0316878fdc95d55a8c7 /tools/man2help.tcl | |
parent | d798be3eaf55726dfd1259cb8f285cecff5ad39c (diff) | |
parent | a18e29f96b7b7a0699ed4d5df433b0b0660341e3 (diff) | |
download | tcl-3274fc31fdb95d7c58b22b554e4418090ea8f0b0.zip tcl-3274fc31fdb95d7c58b22b554e4418090ea8f0b0.tar.gz tcl-3274fc31fdb95d7c58b22b554e4418090ea8f0b0.tar.bz2 |
Merge trunk.
Gustaf's latest and greatest fix.
Diffstat (limited to 'tools/man2help.tcl')
-rw-r--r-- | tools/man2help.tcl | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/man2help.tcl b/tools/man2help.tcl index 018fa84..ca29226 100644 --- a/tools/man2help.tcl +++ b/tools/man2help.tcl @@ -36,7 +36,7 @@ proc generateContents {basename version files} { set lastTopic {} foreach topic [getTopics $package $section] { if {[string compare $lastTopic $topic]} { - set id $topics($package,$section,$topic) + set id $topics($package,$section,$topic) puts $fd "2 $topic=$id" set lastTopic $topic } |