diff options
author | Tiago Cunha <tcunha@gmx.com> | 2012-03-07 13:35:03 +0000 |
---|---|---|
committer | Tiago Cunha <tcunha@gmx.com> | 2012-03-07 13:35:03 +0000 |
commit | 9d79a56402850ac35c57e35fe39990d84e1fd5fa (patch) | |
tree | 0846441b5a0760ad62ff50f0844312ffb6c1d754 /tmux.h | |
parent | e4f1fbd0085f30be0945ff3c8220184b0b473906 (diff) | |
download | rtmux-9d79a56402850ac35c57e35fe39990d84e1fd5fa.tar.gz rtmux-9d79a56402850ac35c57e35fe39990d84e1fd5fa.tar.bz2 rtmux-9d79a56402850ac35c57e35fe39990d84e1fd5fa.zip |
Sync OpenBSD patchset 1036:
The wlmouse offset should be part of the client, not the server. From
Ailin Nemui.
Diffstat (limited to 'tmux.h')
-rw-r--r-- | tmux.h | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -971,8 +971,6 @@ struct session { struct environ environ; - int wlmouse; - int references; TAILQ_ENTRY(session) gentry; @@ -1195,6 +1193,8 @@ struct client { struct mouse_event last_mouse; + int wlmouse; + int references; }; ARRAY_DECL(clients, struct client *); |