From 60061ea33fac62be6277f2ee2f54711849d586dc Mon Sep 17 00:00:00 2001 From: "R. Timothy Edwards" Date: Thu, 25 Jun 2026 09:23:09 -0400 Subject: [PATCH] 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. --- VERSION | 2 +- tcltk/tclmagic.c | 3 +++ 2 files changed, 4 insertions(+), 1 deletion(-) diff --git a/VERSION b/VERSION index ac7ca02c..ed183db6 100644 --- a/VERSION +++ b/VERSION @@ -1 +1 @@ -8.3.667 +8.3.668 diff --git a/tcltk/tclmagic.c b/tcltk/tclmagic.c index 72deaeb8..1977a145 100644 --- a/tcltk/tclmagic.c +++ b/tcltk/tclmagic.c @@ -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 */