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:
parent
e7b8e89d2f
commit
60061ea33f
|
|
@ -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 */
|
||||
|
|
|
|||
Loading…
Reference in New Issue