We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent db842b5 commit c6cc589Copy full SHA for c6cc589
src/core/m-gc.c
@@ -165,7 +165,11 @@ static void Mark_Series(REBSER *series, REBCNT depth);
165
// The ->ser field of the REBEVT is void*, so we must cast
166
// Comment says it is a "port or object"
167
CHECK_MARK((REBSER*)VAL_EVENT_SER(value), depth);
168
- }
+ }
169
+
170
+ if (IS_EVENT_MODEL(value, EVM_GUI)) {
171
+ Mark_Gob(VAL_EVENT_SER(value), depth);
172
173
174
if (IS_EVENT_MODEL(value, EVM_DEVICE)) {
175
// In the case of being an EVM_DEVICE event type, the port! will
0 commit comments