summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authordkf <donal.k.fellows@manchester.ac.uk>2024-05-17 13:29:12 (GMT)
committerdkf <donal.k.fellows@manchester.ac.uk>2024-05-17 13:29:12 (GMT)
commita8a9dd7928c5767880b492d26f061ffc29992773 (patch)
tree431cb935928e97207bb3413bc8262d24d92436bf
parent4d361a9367164a02b89f6ff54111cd46c9b622cc (diff)
downloadtcl-a8a9dd7928c5767880b492d26f061ffc29992773.zip
tcl-a8a9dd7928c5767880b492d26f061ffc29992773.tar.gz
tcl-a8a9dd7928c5767880b492d26f061ffc29992773.tar.bz2
Remove the band-aid
-rw-r--r--generic/tclCmdIL.c7
1 files changed, 1 insertions, 6 deletions
diff --git a/generic/tclCmdIL.c b/generic/tclCmdIL.c
index 279bc7b..aef0399 100644
--- a/generic/tclCmdIL.c
+++ b/generic/tclCmdIL.c
@@ -1388,12 +1388,7 @@ TclInfoFrame(
* Procedure CallFrame.
*/
- if (procPtr != NULL
-#ifndef AVOID_EMERGENCY_HACKS
- /* Emergency band-aid fix for [87271f7cd6] */
- && procPtr->cmdPtr != NULL
-#endif
- ) {
+ if (procPtr != NULL) {
Tcl_HashEntry *namePtr = procPtr->cmdPtr->hPtr;
if (namePtr) {