summaryrefslogtreecommitdiffstats
path: root/tmux.h
diff options
context:
space:
mode:
authornicm <nicm>2019-12-30 21:24:55 +0000
committernicm <nicm>2019-12-30 21:24:55 +0000
commit206d878127b4ba4aedb5255b03d71272fa06bcab (patch)
tree31c705485f4f9d872488854ab408c56ca62c1d8a /tmux.h
parent4ea07716de541aea5b8118ac0cfc4bc3bd30cb80 (diff)
Do not let readonly clients limit the size, suggested by Max Barraclough
in GitHub issue 2042.
Diffstat (limited to 'tmux.h')
-rw-r--r--tmux.h3
1 files changed, 2 insertions, 1 deletions
diff --git a/tmux.h b/tmux.h
index 2315f643..0a0fc1b5 100644
--- a/tmux.h
+++ b/tmux.h
@@ -1599,7 +1599,8 @@ struct client {
#define CLIENT_NOSIZEFLAGS \
(CLIENT_DEAD| \
CLIENT_SUSPENDED| \
- CLIENT_DETACHING)
+ CLIENT_DETACHING| \
+ CLIENT_READONLY)
int flags;
struct key_table *keytable;