Skip to content

Commit 5ef43bf

Browse files
author
jan.nijtmans
committed
Merge 8.6
2 parents 85be4a1 + 9bdfc33 commit 5ef43bf

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

generic/tclOO.decls

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
# library via the stubs table. This file is used to generate the
66
# tclOODecls.h, tclOOIntDecls.h and tclOOStubInit.c files.
77
#
8-
# Copyright (c) 2008-2013 by Donal K. Fellows.
8+
# Copyright © 2008-2013 Donal K. Fellows.
99
#
1010
# See the file "license.terms" for information on usage and redistribution of
1111
# this file, and for a DISCLAIMER OF ALL WARRANTIES.

generic/tclTomMath.decls

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
# If you edit this file, advance the revision number (and the epoch
88
# if the new stubs are not backward compatible) in tclTomMathDecls.h
99
#
10-
# Copyright (c) 2005 by Kevin B. Kenny. All rights reserved.
10+
# Copyright © 2005 Kevin B. Kenny. All rights reserved.
1111
#
1212
# See the file "license.terms" for information on usage and redistribution
1313
# of this file, and for a DISCLAIMER OF ALL WARRANTIES.

tools/genStubs.tcl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1101,7 +1101,7 @@ proc genStubs::emitInit {name textVar} {
11011101
}
11021102
foreach intf [array names interfaces] {
11031103
if {[info exists hooks($intf)]} {
1104-
if {[lsearch -exact $hooks($intf) $name] >= 0} {
1104+
if {$name in $hooks($intf)} {
11051105
set root 0
11061106
break
11071107
}

0 commit comments

Comments
 (0)