diff options
author | dkf <dkf@noemail.net> | 2002-10-03 13:34:29 (GMT) |
---|---|---|
committer | dkf <dkf@noemail.net> | 2002-10-03 13:34:29 (GMT) |
commit | 1034df05411de622609a790aeba689e118225fde (patch) | |
tree | 9c39f7a0b3f113c68393d56cb15a4e054d19cd2e /tools/man2help2.tcl | |
parent | 2462052b918855f746fa9a4c58594564b75d9fb6 (diff) | |
download | tcl-1034df05411de622609a790aeba689e118225fde.zip tcl-1034df05411de622609a790aeba689e118225fde.tar.gz tcl-1034df05411de622609a790aeba689e118225fde.tar.bz2 |
[info exist]->[info exists]. [Bug 602566]
FossilOrigin-Name: eb7c8f93a557fc3d8cf44cce5db3fcfad2313358
Diffstat (limited to 'tools/man2help2.tcl')
-rw-r--r-- | tools/man2help2.tcl | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/tools/man2help2.tcl b/tools/man2help2.tcl index 0b70fec..df2678c 100644 --- a/tools/man2help2.tcl +++ b/tools/man2help2.tcl @@ -9,7 +9,7 @@ # See the file "license.terms" for information on usage and redistribution # of this file, and for a DISCLAIMER OF ALL WARRANTIES. # -# RCS: @(#) $Id: man2help2.tcl,v 1.11 2002/05/08 23:48:13 davygrvy Exp $ +# RCS: @(#) $Id: man2help2.tcl,v 1.12 2002/10/03 13:34:32 dkf Exp $ # # Global variables used by these scripts: @@ -868,7 +868,7 @@ proc THmacro {argList} { tab text $curSect font R - if {[info exist bitmap]} { + if {[info exists bitmap]} { # a right justified bitmap puts $file "\\\{bmrt $bitmap\\\}" } |