refactor: drop line_number_mode broadcast messages

This commit is contained in:
CJ van den Berg 2026-01-12 16:29:25 +01:00
parent 6a6fb11c8e
commit e61d0f42b8
Signed by: neurocyte
GPG key ID: 8EB1E1BB660E3FB9

View file

@ -595,6 +595,9 @@ fn receive_safe(self: *Self, from: tp.pid_ref, m: tp.message) !void {
return; return;
} }
if (try m.match(.{ "line_number_mode", tp.more })) // drop broadcast messages
return;
return tp.unexpected(m); return tp.unexpected(m);
} }