1677
1678
1679
1680
1681
1682
1683
1684
1685
1686
1687
1688
1689
1690
1691
1692
1693
1694
1695
1696
1697
1698
|
Tcl_IncrRefCount(objPtr);
hPtr = Tcl_FindHashEntry(&iclsPtr->delegatedFunctions,
(char *)objPtr);
Tcl_DecrRefCount(objPtr);
if (hPtr != NULL) {
idmPtr = Tcl_GetHashValue(hPtr);
isStar = 1;
} else {
#if 0
hPtr = Tcl_FindHashEntry(&iclsPtr->functions,
(char *)objv[2]);
if (hPtr != NULL) {
idmPtr = Tcl_GetHashValue(hPtr);
}
#endif
}
} else {
found = 1;
idmPtr = Tcl_GetHashValue(hPtr);
}
if (isStar) {
/* check if the function is in the exceptions */
|
<
<
<
<
<
<
<
<
|
1677
1678
1679
1680
1681
1682
1683
1684
1685
1686
1687
1688
1689
1690
|
Tcl_IncrRefCount(objPtr);
hPtr = Tcl_FindHashEntry(&iclsPtr->delegatedFunctions,
(char *)objPtr);
Tcl_DecrRefCount(objPtr);
if (hPtr != NULL) {
idmPtr = Tcl_GetHashValue(hPtr);
isStar = 1;
}
} else {
found = 1;
idmPtr = Tcl_GetHashValue(hPtr);
}
if (isStar) {
/* check if the function is in the exceptions */
|