diff options
author | Nicholas Marriott <nicm@cvs.openbsd.org> | 2020-04-06 17:51:35 +0000 |
---|---|---|
committer | Nicholas Marriott <nicm@cvs.openbsd.org> | 2020-04-06 17:51:35 +0000 |
commit | 9e4be60fe582ac5246804ad6b86db7e34a51c15f (patch) | |
tree | 0278083e5362040020f43d3d897cba78481a8ff9 /usr.bin/tmux/tmux.h | |
parent | cb8b407f23ba21e079f61a1d233b3678a373e4d7 (diff) |
Change copy mode to make copy of the pane history so it does not need to
freeze updates (which does not play nicely with some applications, a
longstanding problem) and will allow some other changes later. From
Anindya Mukherjee.
Diffstat (limited to 'usr.bin/tmux/tmux.h')
-rw-r--r-- | usr.bin/tmux/tmux.h | 5 |
1 files changed, 1 insertions, 4 deletions
diff --git a/usr.bin/tmux/tmux.h b/usr.bin/tmux/tmux.h index 95a96772cce..4670323fa38 100644 --- a/usr.bin/tmux/tmux.h +++ b/usr.bin/tmux/tmux.h @@ -1,4 +1,4 @@ -/* $OpenBSD: tmux.h,v 1.973 2020/04/01 09:05:27 nicm Exp $ */ +/* $OpenBSD: tmux.h,v 1.974 2020/04/06 17:51:34 nicm Exp $ */ /* * Copyright (c) 2007 Nicholas Marriott <nicholas.marriott@gmail.com> @@ -904,7 +904,6 @@ struct window_pane { int fd; struct bufferevent *event; - u_int disabled; struct event resize_timer; @@ -925,8 +924,6 @@ struct window_pane { size_t status_size; TAILQ_HEAD (, window_mode_entry) modes; - struct event modetimer; - time_t modelast; char *searchstr; int searchregex; |