diff options
author | 2021-01-18 10:27:54 +0000 | |
---|---|---|
committer | 2021-01-18 10:27:54 +0000 | |
commit | 8c34c8e12f9e33474526393a7386e7b80e3e24e5 (patch) | |
tree | 602244850a94f6f25ee597e3382d79372961c5cf /usr.bin/tmux/tmux.h | |
parent | Introduce new function if_unit(9). This function returns a pointer the (diff) | |
download | wireguard-openbsd-8c34c8e12f9e33474526393a7386e7b80e3e24e5.tar.xz wireguard-openbsd-8c34c8e12f9e33474526393a7386e7b80e3e24e5.zip |
There is no need to clear every line entirely before drawing to it, this
means moving the cursor and messes up wrapping. Better to just clear the
sections that aren't written over. GitHub issue 2537.
Diffstat (limited to 'usr.bin/tmux/tmux.h')
-rw-r--r-- | usr.bin/tmux/tmux.h | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/usr.bin/tmux/tmux.h b/usr.bin/tmux/tmux.h index f5290a5e785..e82bd5257ba 100644 --- a/usr.bin/tmux/tmux.h +++ b/usr.bin/tmux/tmux.h @@ -1,4 +1,4 @@ -/* $OpenBSD: tmux.h,v 1.1084 2021/01/17 16:17:41 nicm Exp $ */ +/* $OpenBSD: tmux.h,v 1.1085 2021/01/18 10:27:54 nicm Exp $ */ /* * Copyright (c) 2007 Nicholas Marriott <nicholas.marriott@gmail.com> @@ -1890,7 +1890,6 @@ const char *find_home(void); const char *getversion(void); void expand_paths(const char *, char ***, u_int *); - /* proc.c */ struct imsg; int proc_send(struct tmuxpeer *, enum msgtype, int, const void *, size_t); |