mirror of
https://github.com/tmux/tmux.git
synced 2026-04-16 03:56:28 +00:00
Do not notify clients if not fully initialized, from Ben Maurer in
GitHub issue 4980.
This commit is contained in:
@@ -24,7 +24,8 @@
|
||||
#include "tmux.h"
|
||||
|
||||
#define CONTROL_SHOULD_NOTIFY_CLIENT(c) \
|
||||
((c) != NULL && ((c)->flags & CLIENT_CONTROL))
|
||||
((c) != NULL && ((c)->flags & CLIENT_CONTROL) && \
|
||||
(c)->control_state != NULL)
|
||||
|
||||
void
|
||||
control_notify_pane_mode_changed(int pane)
|
||||
|
||||
Reference in New Issue
Block a user