diff options
author | dgp <dgp@noemail.net> | 2005-07-23 03:31:40 (GMT) |
---|---|---|
committer | dgp <dgp@noemail.net> | 2005-07-23 03:31:40 (GMT) |
commit | c228bce587e07789d1307443a6866c324a7e2524 (patch) | |
tree | a1759129b3bba7bc5ab14ee589b56ba907eb75bf /library | |
parent | 1b035825e58d287201213671bb05ee8ed7f3d424 (diff) | |
download | tcl-c228bce587e07789d1307443a6866c324a7e2524.zip tcl-c228bce587e07789d1307443a6866c324a7e2524.tar.gz tcl-c228bce587e07789d1307443a6866c324a7e2524.tar.bz2 |
correction to reversed logic
FossilOrigin-Name: 2a2953ce33d6d911689b7ad89ebd5084e21a60dd
Diffstat (limited to 'library')
-rw-r--r-- | library/auto.tcl | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/library/auto.tcl b/library/auto.tcl index 90f8b14..80fc2a2 100644 --- a/library/auto.tcl +++ b/library/auto.tcl @@ -3,7 +3,7 @@ # utility procs formerly in init.tcl dealing with auto execution # of commands and can be auto loaded themselves. # -# RCS: @(#) $Id: auto.tcl,v 1.12.2.9 2005/07/22 21:59:39 dgp Exp $ +# RCS: @(#) $Id: auto.tcl,v 1.12.2.10 2005/07/23 03:31:41 dgp Exp $ # # Copyright (c) 1991-1993 The Regents of the University of California. # Copyright (c) 1994-1998 Sun Microsystems, Inc. @@ -553,7 +553,7 @@ auto_mkindex_parser::command proc {name args} { auto_mkindex_parser::hook { if {![catch {package require tbcload}]} { - if {[namespace which -command tbcload::bcproc] ne ""} { + if {[namespace which -command tbcload::bcproc] eq ""} { auto_load tbcload::bcproc } load {} tbcload $auto_mkindex_parser::parser |