Missed one additional place where an "#ifdef MAGIC_NO_TK" block

was needed, in the last commit.  This fix should make the CI run
clean again.
This commit is contained in:
R. Timothy Edwards 2026-06-25 09:23:09 -04:00
parent e7b8e89d2f
commit 60061ea33f
2 changed files with 4 additions and 1 deletions

View File

@ -1 +1 @@
8.3.667
8.3.668

View File

@ -1516,6 +1516,8 @@ Tclmagic_SafeInit(interp)
return Tclmagic_Init(interp);
}
#ifndef MAGIC_NO_TK
/* Procedure to set up restricted Tk event processing to allow window
* exposure and updates to occur while deferring key and button press
* events. This allows window updates during potentially long-running
@ -1544,3 +1546,4 @@ RestrictInputProc(
}
}
#endif /* MAGIC_NO_TK */