mirror of
https://github.com/tmux/tmux.git
synced 2026-04-16 12:06:32 +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"
|
#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)
|
||||||
|
|||||||
Reference in New Issue
Block a user