diff options
author | Nicholas Marriott <nicm@cvs.openbsd.org> | 2020-04-17 14:06:43 +0000 |
---|---|---|
committer | Nicholas Marriott <nicm@cvs.openbsd.org> | 2020-04-17 14:06:43 +0000 |
commit | 3087eae2e5a7722b816ef40e7d22e6c60444a251 (patch) | |
tree | 3bc638e0f7a4f5f6e97efe5fb2d4c8c5f1740cb2 /usr.bin/tmux/tmux.h | |
parent | a9165f904ef14a04073a4a8b732963211ab66835 (diff) |
Make sure the cursor position is still on screen after we have trimmed
empty lines. Also improve some log messages.
Diffstat (limited to 'usr.bin/tmux/tmux.h')
-rw-r--r-- | usr.bin/tmux/tmux.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/usr.bin/tmux/tmux.h b/usr.bin/tmux/tmux.h index 0f3306a0315..9708b9b16ec 100644 --- a/usr.bin/tmux/tmux.h +++ b/usr.bin/tmux/tmux.h @@ -1,4 +1,4 @@ -/* $OpenBSD: tmux.h,v 1.1000 2020/04/16 16:13:56 nicm Exp $ */ +/* $OpenBSD: tmux.h,v 1.1001 2020/04/17 14:06:42 nicm Exp $ */ /* * Copyright (c) 2007 Nicholas Marriott <nicholas.marriott@gmail.com> @@ -79,7 +79,7 @@ struct winlink; #define NAME_INTERVAL 500000 /* Maximum size of data to hold from a pane. */ -#define READ_SIZE 4096 +#define READ_SIZE 8192 /* Default pixel cell sizes. */ #define DEFAULT_XPIXEL 16 |