Do not notify clients if not fully initialized, from Ben Maurer in

GitHub issue 4980.
This commit is contained in:
nicm
2026-04-13 09:35:20 +00:00
parent 147521b757
commit e5a2a25faf

View File

@@ -24,7 +24,8 @@
#include "tmux.h" #include "tmux.h"
#define CONTROL_SHOULD_NOTIFY_CLIENT(c) \ #define CONTROL_SHOULD_NOTIFY_CLIENT(c) \
((c) != NULL && ((c)->flags & CLIENT_CONTROL)) ((c) != NULL && ((c)->flags & CLIENT_CONTROL) && \
(c)->control_state != NULL)
void void
control_notify_pane_mode_changed(int pane) control_notify_pane_mode_changed(int pane)